怎样用matlab读取两个txt文档 每个文档里存的都是坐标 然后在一幅坐标图中画出来

2025-03-13 18:38:16
推荐回答(1个)
回答1:

A = load('1.txt');
B = load('2.txt');
C = [A B];
plot(C(:,1),C(:2));