Plotting graph for specific columns and rows
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a table with 60 columns and 60,000 rows. I need to plot graph with x-axis as my 20th column and y-axis as 60th column. I just need to plot the graph for rows from 1 to 4000. please help me with a solution.
0 Kommentare
Akzeptierte Antwort
Matt J
am 4 Aug. 2022
plot(yourTable{1:4000,20}, yourTable{1:4000,60})
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D 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!