Data Plotting in a Single Figure
1 回表示 (過去 30 日間)
古いコメントを表示
Dr. Pemendra Kumar Pardhi
2021 年 4 月 14 日
回答済み: madhan ravi
2021 年 4 月 14 日
Dear all,
I want to plot a single figure including four variable.
I have a data as atteched file
I want to plot a figure including above variable, Here U=time, V= input, X= output and Y= efficiancy
0 件のコメント
採用された回答
madhan ravi
2021 年 4 月 14 日
U = setdiff(10 : 10: 100, 80 : 10 : 90);
V = 1e2 : 50 : 450;
X = sort(randi(400, size(U)));
Y = sort(randi(98, size(U))) .* rand(size(U));
scatter3(V, X, Y,[], U, 'filled')
colorbar
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!