フィルターのクリア

Is it possible to analyze my data in my plot window (with my mouse cursor) like in this link?

2 ビュー (過去 30 日間)
Is it possible to analyze my data in my plot window (with my mouse cursor to get some specific values) like in this link? -> https://plot.ly/matlab/scatter/
Input_Matrix = textread('Rainflow_Input1.txt')
[zeilen,spalten]=size(Input_Matrix)
x = Input_Matrix(:,1)
y = Input_Matrix(:,2)
z = Input_Matrix(:,3)
colorbar('location','Manual', 'position', [0.93 0.1 0.02 0.81]);
az = 0;
el = 90;
view(az, el);
%scatter3(x,y,z,'filled')%Problem i dont know to make it filled
view(0,90)% view from above !!!http://de.mathworks.com/help/matlab/ref/view.html
a = 30;%markersize
scatter3(x, y, z, a, z, 'filled');
view(0, 90)
colorbar;

採用された回答

Walter Roberson
Walter Roberson 2016 年 9 月 26 日
  2 件のコメント
Philipp Mueller
Philipp Mueller 2016 年 9 月 27 日
Thank you it works. But the x-axis wont be marked?? Like in this picture
@Walter Roberson
Walter Roberson
Walter Roberson 2016 年 9 月 27 日
No, that kind of split information updating (x information is shown at X axis, y information is shown at relevant point) is not supported in MATLAB. There is probably a way it could be programmed, but it would not be trivial.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by