Finding value for each degree from matlab figure
Afficher commentaires plus anciens
After running the values I obtained from a NACA profile in Matlab along with the txt file, I perform the smoothing process. I am trying to find equivalents at every level for the figure in the appendix. How can I do it

This is the command I run for the figure I obtained:
[Alfa2D, cl2D, ~, ~]= textread('Naca LD1408 9R.txt','%f %f %f %f');
N2D = size(Alfa2D,1);
%--------------------------------------------------------------------------
% Fit a Smoothing Spline Model
%--------------------------------------------------------------------------
f = fit(Alfa2D, cl2D,'smoothingspline','SmoothingParam',0.3)
figure(1); plot(f,Alfa2D,cl2D)
2 commentaires
Walter Roberson
le 5 Mai 2024
I am trying to find equivalents at every level for the figure in the appendix.
Could you explain that more?
helin özdemir
le 5 Mai 2024
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Robust Control Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

