Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.

9 Ansichten (letzte 30 Tage)
stft = (Of_rightHandAccx_filtered,60,'Window',win,'OverlapLength',98,'FFTLength',2048);
  1 Kommentar
Raghav
Raghav am 29 Jun. 2022
As per the error message: check for mismatched delimiters.
stft(Of_rightHandAccx_filtered,60,'Window',win,'OverlapLength',98,'FFTLength',2048);
would work if other variables like: Of_rightHandAccx_filtered and win are deefined correctly.
For further understanding stft() function in MATLAB, go through the documentation I have attached here.
Thanks

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Jon
Jon am 29 Jun. 2022
Bearbeitet: Jon am 29 Jun. 2022
On the right hand side of your equal sign you forgot to put the name of the function you were calling, you just list the arguments in parentheses.
Looks like you are using a function related to estimating power spectrums but I'm not sure what function you intended to call
  1 Kommentar
Merve Özkanat
Merve Özkanat am 27 Sep. 2022
Hi, I get the same error. Can you help please?
global a b t E nu
GP1=(-a/sqrt(3),-b/sqrt(3));
GP2=(a/sqrt(3),-b/sqrt(3));
GP3=(a/sqrt(3),b/sqrt(3));
GP4=(-a/sqrt(3),b/sqrt(3));

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by