std function won't execute

5 次查看(过去 30 天)
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.

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by