im getting an error message please help
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
[A,B,C,D]=butter(10,[395 405]/750);
d = designfilt('bandpassiir','FilterOrder',4,...
'HalfPowerFrequency1',395,'HalfPowerFrequency2',405 ...
'SampleRate',1500);
sos=ss2sos(A,B,C,D);
fvt=fvtool(sos,'Fs',1500);
legend(fvt,'butter','designfilt')
i am getting this error message
'SampleRate',1500);
↑
Error: Unexpected MATLAB expression.
0 Kommentare
Akzeptierte Antwort
Birdman
am 13 Feb. 2018
Include a comma:
d = designfilt('bandpassiir','FilterOrder',4,...
'HalfPowerFrequency1',395,'HalfPowerFrequency2',405, ...
'SampleRate',1500);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Pole and Zero Locations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!