0

我有一个数据文件,其中我从 2 列中获取所有数字。两列数据,我称之为“a”和“r”,其中存储了一个我想打折的初始值。它在数据中也有几次运行,因此初始化重复了大约 15 次。有没有一种方法可以绘制对应于大于初始值(在本例中为 4)及其相应 r 值的点的对数?这将是沿着

fia = fopen('data.txt');
A = fscanf(fia, '%f %f, [2,inf]);
a=A(1,:);
r=A(2;:);
plot(log(a(4:end)),log(r)); % I know this won't work, as it breaks down the matrix, but something like this.
4

0 回答 0