How do I plot three columns of data (x, y, dependent_variable)?
7 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I have three columns of data in a .dat file I imported into Matlab. The first column is the x coordinate value, the second column is the y coordinate value, and the third column is the data point, which is dependent on both the x and y coordinates.
How do I plot the third column of data versus the first two columns (x and y coordinates)?
Thanks very much for any advice.
0 件のコメント
回答 (3 件)
Titus Edelhofer
2015 年 2 月 26 日
Hi,
in your case usually a 3D view is the natural one. Alternatives would be to show the third column as the color (using scatter), something like
scatter(x, y, 10, z)
Or use contour, if isolines make sense for your data.
Titus
0 件のコメント
Star Strider
2015 年 2 月 26 日
編集済み: Star Strider
2015 年 2 月 26 日
Three options, depending on what you want: stem3, scatter3 or plot3 functions. (I prefer stem3 because it locates the position of the z data with respect to x and y.)
2 件のコメント
Star Strider
2015 年 2 月 26 日
Gabriel’s ‘Answer’ moved here...
Thanks Star Strider.
All of the above commands still give me 3D views of the data. I'm looking for a 2D representation of the data.
Any ideas?
Star Strider
2015 年 2 月 26 日
You didn’t say that in your initial Question.
I agree with Titus. With the 2D constraint, I can’t think of anything better.
Otherwise:
figure(1)
subplot(2,1,1)
plot(x, z)
subplot(2,1,2)
plot(y, z)
Sean de Wolski
2015 年 2 月 26 日
If you want to view 3d data (spatial, spatial, value) in two d, you could use color in scatter to represent z and x/y for x/y.
>> scatter(1:10,rand(1,10),50,rand(1,10),'*')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!