How can I change hisfit curve into 2d gaussian contour plot?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Sabella Huang
il 24 Giu 2022
Commentato: Star Strider
il 24 Giu 2022
Hello Guys,
I want to ask about, how to make the hisfit curve becomes a 2d gaussian function plot?. Here, I give my hisfit calculations from matlab in excel forms.
Thank you
0 Commenti
Risposta accettata
Star Strider
il 24 Giu 2022
I am not certain what you want.
Try this —
D = readmatrix('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1044625/Hisfit%20curve.xlsx');
x = D(:,1);
y = D(:,2);
figure
plot(x, y)
grid
title('Original Data')
figure
surf(x, x, y*y.')
title('Surface Plot Of Original Data (Ax MAtrix)')
figure
contourf(x,x,y*y.')
axis('equal')
title('Contour Plot Of Matrix Data')
.
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Contour Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!