Effacer les filtres
Effacer les filtres

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

4 vues (au cours des 30 derniers jours)
Saoirse
Saoirse le 9 Oct 2023
Commenté : Stephen23 le 10 Oct 2023
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)))

Réponses (1)

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

Connectez-vous pour commenter.

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Tags

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by