Plotting multi valued data properly
2 ビュー (過去 30 日間)
古いコメントを表示
Hi
It can be plotted using the following
clear all
start = load('example.txt');
figure(1)
plot(start(:, 1), start(:, 2),'.')
As seen, the data is multivalued, and it forms an arc. I wish to connect the data points by a line, however when I try that, then the result is not an arc, but a web.
Is there a way to plot this properly in MatLAB?
Best, Niles.
0 件のコメント
回答 (1 件)
Sean de Wolski
2012 年 7 月 30 日
I won't download the data set, but you could likely sort it (or sortrows) it first so that the connected points are in sorted order.
参考
カテゴリ
Help Center および File Exchange で Shifting and Sorting Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!