When multiplying or dividing a vector by a scaler, when do you need a period before the operator?
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
This was a question I had, the picture of the problem and the correct answer is attached, thanks.
0 commentaires
Réponses (1)
Stephen23
le 5 Mai 2024
Modifié(e) : Stephen23
le 5 Mai 2024
"When multiplying or dividing a vector by a scaler, when do you need a period before the operator?"
Lets consider multiplying.
There is no "period before the operator": this is the complete operator: .*
It is the operator for TIMES: https://www.mathworks.com/help/matlab/ref/times.html
This is another, different, complete operator: *
It is the operator for MTIMES: https://www.mathworks.com/help/matlab/ref/mtimes.html
You use MTIMES whenever you want to perform matrix multiplication of two matrices. If you do not know how matrix multiplication is defined then there are many tutorials online.
You use TIMES whenever you want to perform element-wise multiplication of array elements. As a rule of thumb, if you are not doing linear algebra then you probably want to use element-wise array operations.
The same basic concepts apply to multiplication, division, power:
Note that even though you asked about dividing a vector by a scalar, the screenshot you pasted actually shows dividing a scalar by a vector. Getting things mixed up makes writing and understanding code much harder.
0 commentaires
Voir également
Catégories
En savoir plus sur Linear Algebra 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!