std function error "Subscript indices must either be real positive integers or logicals."

1 回表示 (過去 30 日間)
Pierre Lonfat
Pierre Lonfat 2018 年 2 月 22 日
コメント済み: Pierre Lonfat 2018 年 2 月 27 日
Pardon my stupidity but I really dont understand why matlab refuses to compute the standard deviation.
I checked the data: 355 X 1 double (no NaN inside or whatever). I can compute the mean, sum, median, of this exact same data but I receive an error when I want to do the std ...
I tried the following: A=[1 2 3 1 2 3]';
B=std(A) New error: Index exceeds matrix dimensions.
But if I do it on a brand new script, it works !!
Can anyone tell my what the hell is happening there ?
Thank you so much in advance !

回答 (1 件)

Chandani Madnani
Chandani Madnani 2018 年 2 月 26 日
編集済み: Chandani Madnani 2018 年 2 月 26 日
I tried to reproduce the scenario by executing the below commands:
>> A=[1 2 3 1 2 3]';
>> B=std(A)
But I get a response:
B =
0.8944
Which version of MATLAB are you using and on which platform ? Is A initialized to something else in between the two commands ?
  1 件のコメント
Pierre Lonfat
Pierre Lonfat 2018 年 2 月 27 日
I actually found the answer and it is really stupid unfortunately. Never name a variable std (which is used to call the function for the standard deviation). Then everything is right again! Thank you for your answer !

サインインしてコメントする。

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by