LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
e.m
1function n=e(t)
2if nargin<1
3 n=[1;1];
4else
5 if iscell(t)
6 n=ones(length(t{1}),1);
7 else
8 n=ones(t,1);
9 end
10end