How to indicate this data.?
1 回表示 (過去 30 日間)
古いコメントを表示
http://www.fileconvoy.com/dfl.php?id=g75b89554ede6461199922508637ab5789f8c54f52 http://www.fileconvoy.com/dfl.php?id=g0786e6527970376a9992250871fb1ba5953a9f513
This are two 3D data files..
point = dlmread('N3d.txt');
plot3(point(:,1),point(:,2),point(:,3),'r.')
rotate3d on
point = dlmread('3d.txt');
plot3(point(:,1),point(:,2),point(:,3),'g.')
rotate3d on
I am reading this both using above code.
Now, line image created by N3d.txt have space between it if we compare it with 3d.txt file on same graph.
So, how to differentiate that space with another colour..? (I want to indicate it with another colour)
0 件のコメント
回答 (1 件)
Cedric
2013 年 2 月 16 日
Try with this:
figure(1) ;
clf ;
hold on ;
rotate3d on ;
point = dlmread('N3d.txt');
plot3(point(:,1),point(:,2),point(:,3),'r.')
point = dlmread('3d.txt');
plot3(point(:,1),point(:,2),point(:,3),'g.')
5 件のコメント
参考
カテゴリ
Help Center および File Exchange で Interpolation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!