代码搜索:SCI模块
找到约 10,000 项符合「SCI模块」的源代码
代码结果 10,000
www.eeworm.com/read/456209/7353873
sci spdiags.sci
function A = spdiags(x, u, n,n)
// Sparse diagonal matrix
A = make_sparse(1:n,1:n,x);
endfunction
www.eeworm.com/read/456209/7353874
sci spy.sci
function spy(A)
// display not zero entries of a sparse matrix.
[i,j] = find(A);
plot(i,j,'.');
endfunction
www.eeworm.com/read/456209/7353879
sci rescale.sci
function y = rescale(x,a,b)
// rescale - rescale data in [a,b]
//
// y = rescale(x,a,b)
//
// Copyright (c) 2008 Gabriel Peyre
if argn(2)
www.eeworm.com/read/456209/7353880
sci exist.sci
function a = exist(s)
// exist - test if a variable or a file exist
//
// a = exist(s);
//
// Copyright (c) 2008 Gabriel Peyre
a = exists(s);
if a==0
[fid,err] = mtlb_fopen(s, 'r');
if fid
www.eeworm.com/read/456209/7353881
sci jet.sci
www.eeworm.com/read/456209/7353882
sci randn.sci
function y = randn(n,p,q)
// randn - Gaussian number generator
//
// y = randn(n,p);
// y = randn([n p]);
// y = randn(n,p,q);
// y = randn([n p q]);
//
// Copyright (c) 2008 Gabriel Peyre
if isst
www.eeworm.com/read/456209/7353885
sci getoptions.sci
function v = getoptions(options, name, v, mendatory)
// getoptions - retrieve options parameter
//
// v = getoptions(options, name, v, mendatory)
//
// Copyright (c) 2008 Gabriel Peyre
if argn(2)
www.eeworm.com/read/456209/7353886
sci isfield.sci
function r = isfield(options, f)
// isfield - emulation of isfield
//
// r = isfield(options, f);
//
// test if options.f exists.
//
// Copyright (c) 2008 Gabriel Peyre
r = getfield(1,options);
r =
www.eeworm.com/read/456209/7353887
sci~ axis.sci~
function axis(a)
// axis - set axis bounds
if isstr(a)
return;
end
g = get("current_axes");
g.data_bounds = a;
endfunction