那么我面临的问题是非常基本的。我编写了以下代码将一条线分成 10 个部分并找到每个部分的坐标。程序运行良好,但输出文本文件未显示正确结果。我只想在文本文件的列中打印 linspace 的结果。谢谢。
h=input('enter the size of the test box ');
theta=input('the angle');
xs=input('enter the x1 position of the slipplane');
ys=input('enter the y1 position of the slipplane');
r=h/sind(theta);
xe=(xs+(h/sind(theta)));
ye=(ys+(h/sind(theta)));
x1=xs+4;
y1=ys+4;
x10=xe-4;
y10=ye-4;
n=linspace(x1,x10,10)
m=linspace(y1,y10,10)
fid = fopen('result.txt', 'wt');
fprintf(fid,' %f\t %f\n',n,m);
fclose(fid);