代码搜索:sparse
找到约 3,324 项符合「sparse」的源代码
代码结果 3,324
www.eeworm.com/read/137208/13340180
m shiyan54.m
n=100;b=[1:n]';
a1=sparse(1:n,1:n,4,n,n);
a2=sparse(2:n,1:n-1,1,n,n);
a=a1+a2+a2';
tic;x=a\b;t1=toc
aa=full(a);
tic;xx=aa\b;t2=toc
y=sum(x)
yy=sum(xx)
www.eeworm.com/read/136685/13366561
m exm041523_1.m
n=5;SM1=sparse(1:n,1:n,-2*ones(1,n),n,n,n);
SM2=sparse(2:n,1:n-1,ones(1,n-1),n,n,n-1);S1=SM1+SM2+SM2'
e=ones(n,1);S2=spdiags([e,-2*e,e],[-1,0,1],n,n),SF=full(S1)
www.eeworm.com/read/321429/13405009
m five.m
clear
%这段程序处理区域为G1.且进行节点编号、单元编号。节点和单元编号都是按
%由下到上由左到右的规则。然后利用图论绘图方式绘制G1的网格图
xmin1=input('请插入区域左端的x值');
xmax1=input('请输入区域右端的x值');
ymin1=input('请输入区域下端的y值');
ymax1=input('请输入区域上端的y值');
n1=input('
www.eeworm.com/read/319335/13453795
m exm041523_1.m
n=5;SM1=sparse(1:n,1:n,-2*ones(1,n),n,n,n);
SM2=sparse(2:n,1:n-1,ones(1,n-1),n,n,n-1);S1=SM1+SM2+SM2'
e=ones(n,1);S2=spdiags([e,-2*e,e],[-1,0,1],n,n),SF=full(S1)
www.eeworm.com/read/309349/13673648
mod2convert-test-out
Creating sparse matrix.
Converting from sparse to dense.
Converting back to dense again.
Testing for equality of two sparse matrices: OK.
Converting to dense once again.
Testing for equality of two d
www.eeworm.com/read/309349/13673659
html modules.html
Modules Used in LDPC Programs
Modules Used in LDPC Programs
You may need to familiarize yourself with the modules documented here
in order t
www.eeworm.com/read/309157/13680642
readme
Sparse BLAS (Basic Linear Algebra Subprograms) Library
Version 1.0
Mathematical and Computational Sciences Division
National Institute of Technology,
Gaithersburg, MD USA
A C++
www.eeworm.com/read/303772/13809526
m largestn.m
function [xo]=largestn(xi,N,mtype)
%LARGESTN Keep N largest coefficients.
% Usage: xo=largestn(x,N);
% xo=largestn(x,N,mtype);
%
% LARGESTN(x,N) returns an array of the same size as x
www.eeworm.com/read/303772/13809535
m thresh.m
function [xo,N]=thresh(ttype,xi,lambda,mtype);
%THRESH Threshold (hard/soft)
% Usage: x=thresh(ttype,x,lambda);
% [x,N]=thresh(ttype,x,lambda);
% x=thresh(ttype,x,lambda,mtype
www.eeworm.com/read/142536/5765154
h tradefs.h
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
#ifndef TRA
#define TRA
#include "ifsim.h"
#include "cktdefs.h"