代码搜索:SCI模块
找到约 10,000 项符合「SCI模块」的源代码
代码结果 10,000
www.eeworm.com/read/456209/7353849
sci axis.sci
function axis(a)
// axis - set axis bounds
if isstr(a)
return;
end
g = get("current_axes");
g.data_bounds = a;
endfunction
www.eeworm.com/read/456209/7353853
sci mod.sci
function a = mod(a,b)
// mod - positive modulo
//
// a = mod(a,b);
//
// Copyright (c) 2008 Gabriel Peyre
a = pmodulo(a,b)
endfunction
www.eeworm.com/read/456209/7353854
sci eig.sci
function [V,D] = eig(A)
// eig - Matlab eig.
[V,D] = mtlb_eig(A)
endfunction
www.eeworm.com/read/456209/7353855
sci view.sci
function view(s,t)
// not implemented yet
endfunction
www.eeworm.com/read/456209/7353856
sci clamp.sci
function y = clamp(x,a,b)
// clamp - clamp a value or an array
//
// y = clamp(x,a,b);
//
// Copyright (c) 2008 Gabriel Peyre
if argn(2)
www.eeworm.com/read/456209/7353860
sci strfind.sci
function I = strfind(s,t)
// strfind - find a sub-string.
//
// I = strfind(s,t);
//
// Copyright (c) 2008 Gabriel Peyre
I = mtlb_strfind(s,t);
endfunction
www.eeworm.com/read/456209/7353864
sci crop.sci
www.eeworm.com/read/456209/7353869
sci reverse.sci
function x = reverse(x)
// flip a vector
//
// x = reverse(x)
//
// Copyright (c) 2008 Gabriel Peyre
x = x($:-1:1);
endfunction
www.eeworm.com/read/456209/7353871
sci lower.sci
function s = lower(s)
// conversion to lower case
//
// s = lower(s)
//
// Copyright (c) 2008 Gabriel Peyre
s = convstr(s, "l");
endfunction