Effacer les filtres
Effacer les filtres

convert fit data to matrix

21 vues (au cours des 30 derniers jours)
David Pitcher
David Pitcher le 24 Mai 2017
Commenté : David Pitcher le 26 Mai 2017
So I created a table of x, y and z values and input them into fit using
f = fit([T.x, T.y],T.z,'cubicinterp')
they create the plot I would like but f is not a matrix for further processing.
Is there any way of getting z values for the fit object? I would like the output to be a 512x512 matrix
Sorry pretty new to matlab

Réponses (1)

Sanket Karnik
Sanket Karnik le 26 Mai 2017
I understand that you want to fetch the z values from the fit object. Please refer to the following link which speaks about obtaining y values from the curve fitting tool: Get Y values from Curve Fitting Tool
You can use use the same method to obtain z values from fit object.
  1 commentaire
David Pitcher
David Pitcher le 26 Mai 2017
Thanks Sanket I used the below code which seems to have worked too
[x2,y2] = meshgrid(1:512,1:512);
f2 = [f(x2,y2)];

Connectez-vous pour commenter.

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by