I have to plot multiple graphs on the same plot reading .sgl files ; the code i have is as follows; I am not sure how to make it read every file in turn; thanks
8 views (last 30 days)
Show older comments
for i=1:size(filelist,1) sgl=read_hsgl_riff('P*.sgl'); sgl.format; sgl.data; x=sgl.data(:,1); y=sgl.data(:,2); plot(x,y); hold on; end
0 Comments
See Also
Categories
Find more on Loops and Conditional Statements 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!