Why is max(abs(S)) not working? S is a 1x40000 vector

4 次查看(过去 30 天)
S is a 1x40000 vector with negative values hence why im using the abs function but the error message keeps coming up. I have also tried max((abs(S(1,:))) but it has the same error message
"Array indices must be positive integers or logical values.
Error in Max (line 5)
max((abs(S)))"
load 'testhigh (1).dat'
S = (testhigh__1_(1, :)*10^3)*(1/49.500);
max((abs(S)))

回答(1 个)

Walter Roberson
Walter Roberson 2023-10-9
Either max or abs is a variable at that point in the code.
  3 个评论
Walter Roberson
Walter Roberson 2023-10-10
In my observation, the two functions most commonly accidentally re-used as variable names are sum and max
Stephen23
Stephen23 2023-10-10
Solution: rename those variables where they are created/referred to, clear the workspace, run your code again.

请先登录,再进行评论。

类别

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

标签

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by