MATLAB: How to copy the elements from the .dat file (contains 441 rows and 2 coloumns) into an array using for loop

copying elements from .dat file to an array

I have a .dat file which contains 441 rows and 2 coloumns Want to copy all those elements to an array using for loop. Please help me out…

Best Answer

doc importdata % and friends
No loop needed.
Related Question