std function won't execute

조회 수: 12 (최근 30일)
Priyansh Arya
Priyansh Arya 2020년 11월 12일
댓글: Priyansh Arya 2020년 11월 12일
Whenever I'm using std function to calculate the standatd deviation, it is showing "Attempt to execute SCRIPT std as a function:". The error is only being displayed while using std function, and not with other functions.

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 11월 12일
This means that you have created a file named 'std.m' in MATLAB path, which is shadowing MATLAB's builtin std() function. You can run the following line
which std
It will show you the path to file that is shadowing std(). Rename the file to something else.
  댓글 수: 1
Priyansh Arya
Priyansh Arya 2020년 11월 12일
Thank you so much. I was stuck due to this problem from more than a week. This helped!

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

추가 답변 (1개)

madhan ravi
madhan ravi 2020년 11월 12일
You have a file named std.m , rename it or remove it from the path.
  댓글 수: 1
Priyansh Arya
Priyansh Arya 2020년 11월 12일
This helped! Thanks a lot!

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by