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

casi 14 años hace | 9

Respondida
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?

casi 14 años hace | 0