why this is Index exceeds matrix dimensions?

1 visualizzazione (ultimi 30 giorni)
Muhammad Fikri
Muhammad Fikri il 1 Giu 2020
Vc = 2
Vm = 1.5
fc = 100
fm = 10
ts= 1/1000
n = 0:99
t = ts*n
vc = Vc*cos(2*pi*fc*t);
vm = Vm*cos(2*pi*fm*t);
vam = Vc*cos(2*pi*fc*t)+(Vm/2)*cos(2*pi(fc-fm)*t)-(Vm/2)*cos (2*pi(fc+fm)*t);

Risposte (2)

KALYAN ACHARJYA
KALYAN ACHARJYA il 1 Giu 2020
Modificato: KALYAN ACHARJYA il 1 Giu 2020
Vc = 2;
Vm = 1.5;
fc = 100;
fm = 10;
ts= 1/1000;
n = 0:99;
t = ts*n;
vc = Vc*cos(2*pi*fc*t);
vm = Vm*cos(2*pi*fm*t);
vam = Vc*cos(2*pi*fc*t)+(Vm/2)*cos(2*pi*(fc-fm)*t)-(Vm/2)*cos (2*pi*(fc+fm)*t)
%......................................^...........................^

KSSV
KSSV il 1 Giu 2020
Modificato: KSSV il 1 Giu 2020
Note this step:
cos(2*pi(fc-fm)*t)
There * is missing pi and (fc-fp)
Change that one to
cos(2*pi*(fc-fm)*t)
Vc = 2 ;
Vm = 1.5 ;
fc = 100 ;
fm = 10 ;
ts= 1/1000 ;
n = 0:99 ;
t = ts*n ;
vc = Vc*cos(2*pi*fc*t);
vm = Vm*cos(2*pi*fm*t);
vam = Vc.*cos(2*pi*fc*t)+(Vm/2).*cos(2*pi*(fc-fm)*t)-(Vm/2).*cos (2*pi*(fc+fm)*t);

Categorie

Scopri di più su Data Types in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by