在matlab中怎么用输入量给变量赋值?

 我来答
凝帝系列PN58N
推荐于2017-10-02 · 超过65用户采纳过TA的回答
知道答主
回答量:123
采纳率:100%
帮助的人:54.7万
展开全部
比如说你要给变量n赋值,你可以这样写: n=input('请输入n的值:'); 当你运行的时候,再主窗口会提示,请输入n的值: 当你输入值后,那个值就赋给了变量n 需要说明的是输入n的格式,你应该知道matlab中的变量都是以矩阵形式存在的吧,所以如果n是一个m*k的矩阵的话,比如1 2 3,应该输入[1 2 3],如果n只是1*1的矩阵(就是一个数),那么直接输入就是了,不需要中括号 你看下面一个利用DFT求线性卷积的例子,也涉及到了输入量赋给变量 % Program 5_4 % Linear Convolution Via the DFT%% Read in the two sequences x = input('Type in the first sequence = '); h = input('Type in the second sequence = '); % Determine the length of the result of convolution L = length(x)+length(h)-1; % Compute the DFTs by zero-padding XE = fft(x,L); HE = fft(h,L); % Determine the IDFT of the product y1 = ifft(XE.*HE); % Plot the sequence generated by DFT-based convolution and % the error from direct linear convolutionn = 0:L-1;subplot(2,1,1)stem(n,y1)xlabel('Time index n');ylabel('Amplitude'); title('Result of DFT-based linear convolution') y2 = conv(x,h); error = y1-y2; subplot(2,1,2) stem(n,error)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式