Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你好,我是八度初学者。我在文件中有一个数据集,如下所示:
12 20 3 1 \n 12 3 4 5 .......
这些是矩形的四个坐标。我需要在图表中绘制所有这些矩形。我尝试使用以下代码读取文件,但我被卡住了。
fid=fopen("priminfo.txt"); A = testscan (fid, '%f %f %f %f %*[^\n]')
对此的任何评论都会非常有帮助
这应该可以正常工作:
A = textscan(fid, '%f %f %f %f');
其实这也应该
A = load('priminfo.txt');