代码搜索:SCI模块
找到约 10,000 项符合「SCI模块」的源代码
代码结果 10,000
www.eeworm.com/read/456209/7353821
sci reshape.sci
function x = reshape(x, d)
// reshape - reshape an array
//
// x = reshape(x, d)
//
// Copyright (c) 2008 Gabriel Peyre
x = matrix(x,d);
endfunction
www.eeworm.com/read/456209/7353825
sci circshift.sci
function A = circshift(A,s)
if length(s)==2
A = circshift(A,s(1));
A = circshift(A',s(2))';
return;
end
sel = 1:size(A,1);
sel = mod(sel+s-1,size(A,1))+1;
d = nb_dims(A);
if d==1
A =
www.eeworm.com/read/456209/7353826
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/7353828
sci colormap.sci
function colormap(c)
f=gcf(); f.color_map=c;
endfunction
www.eeworm.com/read/456209/7353835
sci isstruct.sci
function r = isstruct(a)
// isstruct - is a struct ?
//
// Copyright (c) 2008 Gabriel Peyre
r = (type(a)==17);
endfunction
www.eeworm.com/read/456209/7353842
sci lighting.sci
function lighting(s,t)
// not implemented yet
endfunction
www.eeworm.com/read/456209/7353843
sci hold.sci
function hold(a)
// hold - does nothing (Matlab compatibility)
endfunction
www.eeworm.com/read/456209/7353846
sci pi.sci
function a = pi()
// the pi constant - for Matlab compatibility
a = %pi;
endfunction
www.eeworm.com/read/456209/7353847
sci std.sci
function y = std(x,a)
// std - for matlab compatibility
if argn(2)==1
y = stdev(x);
else
y = stdev(x,a);
end
endfunction
www.eeworm.com/read/456209/7353848
sci repmat.sci
function x = repmat(x, s)
// repmat - duplicate an array
//
// x = repmat(x, s)
//
// Copyright (c) 2008 Gabriel Peyre
x = mtlb_repmat(x,s);
return;
// warning : very innefficient
for i=1:lengt