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

조회 수: 1 (최근 30일)
stft = (Of_rightHandAccx_filtered,60,'Window',win,'OverlapLength',98,'FFTLength',2048);
  댓글 수: 1
Raghav
Raghav 2022년 6월 29일
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

댓글을 달려면 로그인하십시오.

채택된 답변

Jon
Jon 2022년 6월 29일
편집: Jon 2022년 6월 29일
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
Merve Özkanat
Merve Özkanat 2022년 9월 27일
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));

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by