代码搜索:linear

找到约 10,000 项符合「linear」的源代码

代码结果 10,000
www.eeworm.com/read/407298/11422434

m linear system ii.m

%-- 11/11/08 5:13 PM --% a=[1 0 0;1 1 1;20 2 0] a=[1 0 0;1 1 1;20 2 0]; a=[1 0 0;1 1 1;20 2 0] a=[1 0 0;1 1 1;20 2 0]; b=[] simulink %-- 11/11/08 9:09 PM --% T=[72 4 -174 24;-6 79 121 12;-6
www.eeworm.com/read/405084/11472008

m linear_array_gui.m

function varargout = linear_array_gui(varargin) % LINEAR_ARRAY_GUI M-file for linear_array_gui.fig % LINEAR_ARRAY_GUI, by itself, creates a new LINEAR_ARRAY_GUI or raises the existing % s
www.eeworm.com/read/402117/11542955

m linear_array_gui.m

function varargout = linear_array_gui(varargin) % LINEAR_ARRAY_GUI M-file for linear_array_gui.fig % LINEAR_ARRAY_GUI, by itself, creates a new LINEAR_ARRAY_GUI or raises the existing % s
www.eeworm.com/read/401480/11557253

m linear_array_gui.m

function varargout = linear_array_gui(varargin) % LINEAR_ARRAY_GUI M-file for linear_array_gui.fig % LINEAR_ARRAY_GUI, by itself, creates a new LINEAR_ARRAY_GUI or raises the existing % s
www.eeworm.com/read/400422/11577328

m non_linear_roots.m

function non_linear_roots(fun, x0) tol = 1e-6; syms x; it = 0; x = x0 + tol + tol; while abs(x - x0) > tol it = it + 1; if (it > 10000) || (x == Inf) || (x == -Inf) || (x == NaN) fun