Data Plotting in a Single Figure

1 次查看(过去 30 天)
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

采纳的回答

madhan ravi
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 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Programming 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by