Labfans是一个针对大学生、工程师和科研工作者的技术社区。 | 论坛首页 | 联系我们(Contact Us) |
![]() |
![]() |
#1 |
高级会员
注册日期: 2019-11-21
帖子: 3,006
声望力: 66 ![]() |
![]()
我是MATLAB的新手,所以我什至不知道这样做是否可行,但是这是...我正在尝试使用plot函数在单个图形中打印多条线。问题是,我希望能够通过简单地更改变量来指定图形应显示的行数,例如:{这是我想做的伪代码}
number_of_lines = 4; x = 0:0.5:5; function_output[number_of_lines]; for n=0:number_of_lines function_output[n] = sin(n + x); end for n=0:number_of_lines plot(x,function_output[n]); end 我知道上面的伪代码不完全是MATLAB,但是我想知道是否可以在MATLAB中执行这种算法。 回答: 这是在MATLAB中实现示例的一种方法: function_output = zeros(numel(x), number_of_lines); % Initialize a 2-D array for n = 1:number_of_lines % MATLAB uses 1-based indexing function_output(:, n) = sin(n + x).'; %' Compute a row vector, transpose % it into a column vector, and % place the data in a column of % the 2-D array end plot(x, function_output); % This will plot one line per column of the array 这里是一些文档链接,您应该阅读这些文档链接以学习和理解上面的代码: 更多&回答... |
![]() |
![]() |