Effacer les filtres
Effacer les filtres

Variable "H" might be set by a nonscalar operator

49 vues (au cours des 30 derniers jours)
Marshall Botta
Marshall Botta le 13 Fév 2022
Modifié(e) : Jan le 14 Fév 2022
Hello,
My goal for my code is to simulate a tire model and H equation gets a error code saying "Variable H might be set by a nonscalar operator". I think it has to deal with my variable s being defined as a vector but I dont know how to change it into a scalar. Help please :).
  1 commentaire
Jan
Jan le 13 Fév 2022
Please post code as text, not as screenshot. Then it is easier to suggest modifications using copy&paste.

Connectez-vous pour commenter.

Réponses (1)

Jan
Jan le 13 Fév 2022
If H is an array, what is the meaning of:
if H < 0.5
? The IF command requires a scalar condition. Therefore Matlab inserts an all() automatically. To be exact:
if all(H(:) < 0.5) && ~isempty(H)
It is not meaningful "to change H to a scalar" also.
You are running a loop over the elements of s. Maybe you do not want to access the vector s, but the elements s(i).
  8 commentaires
Marshall Botta
Marshall Botta le 14 Fév 2022
Unforunately this didn't work for me, my (alp,Fy) graph changed competely and (s,Fx) isnt what im looking for. Thank you for the help i think ima just give up on this for right now.
Jan
Jan le 14 Fév 2022
Modifié(e) : Jan le 14 Fév 2022
Square brackets are the operator for concatenating arrays. Changing parentheses to brackets is not useful.
My suggested code produces the same output as the original code.
"(s,Fx) isnt what im looking for" - I do not know, what you are looking for. All I know is the code you have posted.

Connectez-vous pour commenter.

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by