Labfans是一个针对大学生、工程师和科研工作者的技术社区。 论坛首页 | 联系我们(Contact Us)
MATLAB爱好者论坛-LabFans.com
返回   MATLAB爱好者论坛-LabFans.com > 其它 > 资料存档
资料存档 资料存档
回复
 
主题工具 显示模式
旧 2019-12-10, 20:48   #1
poster
高级会员
 
注册日期: 2019-11-21
帖子: 3,006
声望力: 66
poster 正向着好的方向发展
帖子 如何在MATLAB中的数组中保存多个函数?

我是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 这里是一些文档链接,您应该阅读这些文档链接以学习和理解上面的代码:

更多&回答...
poster 当前离线   回复时引用此帖
回复


发帖规则
不可以发表新主题
不可以发表回复
不可以上传附件
不可以编辑自己的帖子

启用 BB 代码
论坛禁用 表情符号
论坛启用 [IMG] 代码
论坛启用 HTML 代码



所有时间均为北京时间。现在的时间是 01:21


Powered by vBulletin
版权所有 ©2000 - 2025,Jelsoft Enterprises Ltd.