3D surface plot from 3 columns of excel data?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
John Schneider
am 8 Jun. 2021
Kommentiert: darova
am 8 Jun. 2021
Total newbie here.
I have 3 columns of data and I want to create a 3D scatter plot. I was able to impot the columns as three 18 x 1 cell arrays in m y workspace. Can anyone help with some basic steps? Thanks!
6 Kommentare
Akzeptierte Antwort
Scott MacKenzie
am 8 Jun. 2021
Here you go...
T = readtable('https://www.mathworks.com/matlabcentral/answers/uploaded_files/645855/P3%20data.xlsx');
x = T{:,2}; % Speed
y = T{:,3}; % Range
z = T{:,4}; % Cost
scatter3(x,y,z);
xlabel('Speed');
ylabel('Range');
zlabel('Cost');

2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

