I get Subscripted assignment dimension mismatch.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Gonzalo Reina
am 26 Okt. 2016
Kommentiert: Gonzalo Reina
am 26 Okt. 2016
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
0 Kommentare
Akzeptierte Antwort
Mischa Kim
am 26 Okt. 2016
Bearbeitet: Mischa Kim
am 26 Okt. 2016
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.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Graphics Performance finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!