필터 지우기
필터 지우기

I get Subscripted assignment dimension mismatch.

조회 수: 2 (최근 30일)
Gonzalo Reina
Gonzalo Reina 2016년 10월 26일
댓글: Gonzalo Reina 2016년 10월 26일
I get Subscripted assignment dimension mismatch when running this program.I just want the program to ask the user the number of sinwaves he wants to plot and also the frequency and amplitude of each
clear
clc
x = input('Please input the number of sinewaves that you want to be plotted ');
T = 1:10;
for n = 1:x
f(n) = input('Please input the frequency of the wave');
A(n) = input('Please input the amplitude of the wave');
wave(n) = (A(n))*sin(2*pi*(f(n))*T);
plot(T,wave(n),'b')
grid on
hold on
xlabel('Time')
ylabel('Amplitude')
title('Sinwave')
end

채택된 답변

Mischa Kim
Mischa Kim 2016년 10월 26일
편집: Mischa Kim 2016년 10월 26일
Use instead
wave(n,:) = (A(n))*sin(2*pi*(f(n))*T);
plot(T,wave(n,:),'b')
You also might want to think about pre-allocating A and f.
What exactly are you trying to accomplish? I am asking because there might be more user-friendly ways of getting the values for those two vectors.
  댓글 수: 1
Gonzalo Reina
Gonzalo Reina 2016년 10월 26일
That enough user friendly for what I am trying to do. It is just a simple program to plot graphs. Why did you change that? pd:I'm a noob for matlab

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by