dealy in reading matrix
    3 views (last 30 days)
  
       Show older comments
    
Hi all,
I need some way to read each row of a matrix every real second, pls help
Thanks
2 Comments
  Jan
      
      
 on 18 Jan 2021
				Where is this matrix stored in which format? "Read each row" is not clear enough yet.
  Ive J
      
 on 18 Jan 2021
				If your matrix is already in workspace (which I doubt):
for i = 1:size(A, 1) 
    myRow = A(i, 1);
    pause(1) % 1 sec delay
    % do blah blah
end
If it's stored in a text file, you can read it by readmatrix. Otherwise for I/O, see fgetl.
Answers (0)
See Also
Categories
				Find more on Workspace Variables and MAT Files in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!