代码搜索:Sparse
找到约 3,324 项符合「Sparse」的源代码
代码结果 3,324
www.eeworm.com/read/168845/5436091
hpp test3.hpp
//
// Copyright (c) 2000-2002
// Joerg Walter, Mathias Koch
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted
www.eeworm.com/read/167562/5458086
c prepare.c
/*
** 2005 May 25
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness fo
www.eeworm.com/read/473219/6848970
m see.m
function see(X,showfull)
%SEE Displays internal structure of variable
%
% Shows the base matrices that build up the variable
%
% X = X0+x_1*X1+x_2*X2+...
%
% SEE(X) Disp
www.eeworm.com/read/472886/6859129
m bp_decodenewc.m
function [yo,iter] = BP_decodenewc(y,N0,H,m,n,max_iter)
if m>n
H=H';
[m,n] = size(H);
end
if ~issparse(H)
[ii,jj,sH] = find(H);
H = sparse(ii,jj,sH,m,n);
end
p0=
www.eeworm.com/read/395730/8155586
m hf.m
function [M]=hf(rows,cols)
%矩阵的行数 rows, 列数cols
M=zeros(rows,cols);
half=rows/(2);
%矩阵从中间分开,左半部为近似系数部分,右半部为细节系数部分
for i= 1:2:half*2
M(i,ceil(i/2)) =0.5;
M(i+1,ceil(i/2))=0.5;
M(i,ceil(i/2
www.eeworm.com/read/193277/8242711
m double.m
function sys=double(X)
%DOUBLE Returns current numerical value
% Author Johan L鰂berg
% $Id: double.m,v 1.1 2005/10/12 16:05:54 joloef Exp $
sys = sparse(X.iX,X.jX,X.sX,X.n,X.m);
%X.basis;
www.eeworm.com/read/193277/8242893
m see.m
function see(X,showfull)
%SEE Displays internal structure of variable
%
% Shows the base matrices that build up the variable
%
% X = X0+x_1*X1+x_2*X2+...
%
% SEE(X) Disp
www.eeworm.com/read/174450/9586952
fp semilagranianfluidaddsource.fp
!!FP1.0
#try to compute Sparse Matrix - Vector Multiplication
DECLARE TexPARA = {0,0,0,0};
#Source(RGB 3 channels)
TEX R0, f[WPOS], TEX0, RECT;
#x(RGB 3 channels)
TEX R1, f[WPOS], TEX1, RECT;
www.eeworm.com/read/173349/9661441
c prepare.c
/*
** 2005 May 25
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness fo
www.eeworm.com/read/335635/12510479
m clucent.m
% function x = clucent(cpm,cl)
%
% Copyright (c) 1998-2002 by Alexander Strehl
function x = clucent(cpm,cl)
x = sparse(max(cl),size(cpm,2));
for i=1:max(cl)
x(i,:) = mean(cpm(find(cl==i)