Oct 24, 2007 #1 WeldGk Materials Joined Aug 14, 2007 Messages 42 Location CA I am trying to load around 200,000 data points into MATLAB (the data is in five columns). I have no idea where to start. Can anyone help me?
I am trying to load around 200,000 data points into MATLAB (the data is in five columns). I have no idea where to start. Can anyone help me?
Oct 24, 2007 #2 IRstuff Aerospace Joined Jun 3, 2002 Messages 44,896 Location US by hand by datafile TTFN FAQ731-376 Upvote 0 Downvote
Oct 24, 2007 Thread starter #3 WeldGk Materials Joined Aug 14, 2007 Messages 42 Location CA Datafile Upvote 0 Downvote
Oct 24, 2007 #4 NS4U Structural Joined Apr 2, 2007 Messages 320 Location US Data=importdata('filename'); or Data=dlmread('filename'); dlmread is a little more versatile I think... check out their help files... also you can use matlab's help file for other methods of importing data Upvote 0 Downvote
Data=importdata('filename'); or Data=dlmread('filename'); dlmread is a little more versatile I think... check out their help files... also you can use matlab's help file for other methods of importing data