Beantwortet
how to display all non NaN values in a matrix
A=(A(~isnan(A)));

fast 14 Jahre vor | 9

Beantwortet
How to use three- line loop with disp to find derivative
syms y x y=x*(2*x+1)^(1/2); f{1}=diff(y,x); for n=2:5, f{n}=diff(f{n-1},x);end f{:} %is this what you mean disp?

fast 14 Jahre vor | 0