repetitive looping and plotting

3 views (last 30 days)
uzzi
uzzi on 1 Nov 2022
Commented: uzzi on 1 Nov 2022
Hello,
I want to create a loop such as for loop or while loop for every 6000 rows and plot each loop of the attached csv file. Can someone help me?

Accepted Answer

KSSV
KSSV on 1 Nov 2022
Edited: KSSV on 1 Nov 2022
T = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1175788/newdata3.csv') ;
data = reshape(T.(2),6000,[]) ;
plot(data)
  3 Comments
KSSV
KSSV on 1 Nov 2022
data is array....you can put loop.
uzzi
uzzi on 1 Nov 2022
That's the question!!! I don't know how to put loop.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!