Rank: 35515 based on 0 downloads (last 30 days) and 0 files submitted
photo

Ryan Kruse

E-mail
Company/University
Faro Technologies

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Comments and Ratings by Ryan
Updated File Comments Rating
25 Jun 2009 2D Weighted Polynomial Fitting and Evaluation Two scripts: polyfitweighted2 fits 2D data with weights, and polyval2 evaluates the 2D polynomial Author: Salman Rogers

This is great! Thanks!

I made a slight modification to deal with NaN values. I changed this:
x = x(:);
y = y(:);
z = z(:);
w = w(:);

to this:
x = x(~isnan(z));
y = y(~isnan(z));
z = z(~isnan(z));
w = w(~isnan(z));

Contact us at files@mathworks.com