代码搜索:sparse
找到约 3,324 项符合「sparse」的源代码
代码结果 3,324
www.eeworm.com/read/205036/15328910
m contents.m
% Tensor Toolbox (Sandia National Labs)
% Version 2.2 10-JAN-2007
%
% Tensor Toolbox for dense, sparse, and decomposed n-way arrays.
%
% khatrirao - Khatri-Rao product of matrices.
% sptendiag -
www.eeworm.com/read/307145/13727871
c testme.c
#include
#include "sparse.h"
void print_tuple(SP_TUPLE *tuple)
{
int curr_dim;
if (tuple == (SP_TUPLE *)NULL)
{
fprintf(stderr, "print_tuple: NULL tuple passed\n");
www.eeworm.com/read/391748/8380747
at sparsemv.at
# Process this file with autom4te to create testsuite. -*- Autotest -*-
# Test suite for GNU tar.
# Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
# This program is free software; you
www.eeworm.com/read/391748/8380936
at sparsemvp.at
# Process this file with autom4te to create testsuite. -*- Autotest -*-
# Test suite for GNU tar.
# Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
# This program is free software; you
www.eeworm.com/read/391748/8381455
texi header.texi
@comment GNU tar Archive Format description.
@comment
@comment Copyright (C) 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
@comment 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software
www.eeworm.com/read/391748/8381901
h tar.h
/* GNU tar Archive Format description.
Copyright (C) 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
This progr
www.eeworm.com/read/192082/8408147
m exercise6a.m
%%
a=1; % Double by default
b=single(1);
c=uint32(1);
d=int32(1);
e=uint16(1);
f=int16(1);
g=uint8(1);
h=int8(1);
%%
i=sparse(2e9,1);
www.eeworm.com/read/288877/8596925
txt solver.m.txt
function G = Solver(DR,d,pperm,rperm)
% G = Solver1(DR,d)
% Form the Green's functions by solving matrix eqn
% Colin Fox, 29 Nov 2005
cf = 1; % 0=left divide (Gaussian elimination), 1=Cholesk
www.eeworm.com/read/431224/8694926
m gcall.m
function gcall(p)
global DAE
if ~p.n, return, end
DAE.g = DAE.g + sparse(p.vref,1,p.u.*DAE.x(p.Vs),DAE.m,1);
www.eeworm.com/read/431224/8696143
m glcall.m
function Glcall(a)
global DAE
if ~a.n, return, end
DAE.Gl = DAE.Gl + sparse(a.ws,1,wspeed(a),DAE.m,1);