How to smooth the contour plot?
Mostra commenti meno recenti
clc
clear all
close all
filename='testdata.xlsx'
a=xlsread(filename,'Sheet1');
pf = a(3:12,:);
ewd = a(14:23,:);
qwd = a(25:34,:);
pwd = a(36:45,:);
gv = a(47:56,:);
ewd1=ewd';
qwd1=qwd';
pf1=pf';
pwd1=pwd';
gv1=gv';
[c,h]=contour(ewd1,qwd1,pf1,[0:4:30])
clabel(c,h, 'labelspacing', 200)
Risposte (1)
Walter Roberson
il 12 Mag 2023
Spostato: Matt J
il 2 Set 2023
0 voti
1 Commento
Nitin Kumar Jhankal
il 2 Set 2023
Spostato: Matt J
il 2 Set 2023
Categorie
Scopri di più su Contour Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!