There is a bug in the order by which the Nan suite calls the 'dim' argument. This matters if you have replaced the matlab 'NaN' functions with the Nan suite.
NaNsuite y = nanstd(x,dim,flag)
MATLAB y = nanstd(X,flag,dim)
y = std(X,flag,dim)
21 Dec 2010
NaN Suite
Descriptive Statistics for N-D matrices ignoring NaNs.
Author: Jan Gläscher
Great submission. Thanks John.
I have a question on transforming a nonlinear problem to linearity:
If the nonlinear problem is of this form:
y = a* x^3
can we linearlize it as follows:
log(y) = log(a) + 3 log (x)
Comment only