Error: Matrix dimensions must agree while using sin function
Show older comments
Ac=Am./m;% Amplitude of carrier signal [ where, modulation Index (m)=Am/Ac ]
fc=fa*100;% Frequency of carrier signal
Tc=1/fc;% Time period of carrier signal
yc=sin(2*pi*fc*t).*Ac;% Eqation of carrier signal
This is my code snippet. It shows the above stated error at the last line. Why is this error happening?
I just want the sin function to be multiplied with each element of Ac
Answers (1)
madhan ravi
on 22 Jun 2020
isequal(size(t),size(Ac)) % should return true
Categories
Find more on Matrices and Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!