Numeric vs matrix array multiplication and division

In what case do you use ./ or .* to multiply two arrays vs / and * alone? I'm confused about these two questions below, can someone answer the two questions below and explain?

2 Commenti

Perhaps start with doing a little bit of reading in the documentation:
This is a fundamental concept in MATLAB, and there are lots of related pages in the DOC.
Good luck!
I've already read that and it's still not clear to me

Accedi per commentare.

 Risposta accettata

KSSV
KSSV il 7 Dic 2016
\ this is mldivide. solves the system of linear equations A*x = B.
/ this is mrdivide. perform right-matrix division, which is same as A*inv(B)
./ this is element by element division.
/. or ./. there are no such operators in MATLAB.

Più risposte (0)

Categorie

Tag

Non è stata ancora inserito alcun tag.

Richiesto:

il 7 Dic 2016

Risposto:

il 7 Dic 2016

Community Treasure Hunt

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

Start Hunting!

Translated by