what does "X = X./max(max(X))" means?>
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
>> X=[1,2,3,4]
X =
1 2 3 4
>> X = X./max(max(X));
>> X
X =
0.2500 0.5000 0.7500 1.0000
>>
I understand from the output, but what does "./" means?
0 commentaires
Réponses (3)
Stephan
le 12 Mar 2019
Modifié(e) : Stephan
le 12 Mar 2019
Hi,
the dot means an elementwise operation. See here:
For more information to this topic see:
Best regards
Stephan
Abdulmanan Butt
le 13 Mar 2019
Modifié(e) : Abdulmanan Butt
le 13 Mar 2019
Hi,
It means,
You are dividing X matrix (element-wise) with the element of matrix X having maximum value.
Like in this case, max(X) or max(max(X)) will be 4, and you are going to divide matrix X with that 4, Where 4 will be divided to each element of matrix X in this element-wise division case, So you got the final result,
X= 0.2500 0.5000 0.7500 1.0000
Regards,
Abdulmanan Butt
4 commentaires
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!