Data Plotting in a Single Figure
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Dr. Pemendra Kumar Pardhi
am 14 Apr. 2021
Beantwortet: madhan ravi
am 14 Apr. 2021
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 Kommentare
Akzeptierte Antwort
madhan ravi
am 14 Apr. 2021
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!