Effacer les filtres
Effacer les filtres

how to add a constant to all the elements of the matrix?

272 vues (au cours des 30 derniers jours)
hp
hp le 1 Mai 2018
plz help, how to add or multiply a constant value to all the elements of the matrix...

Réponses (1)

Star Strider
Star Strider le 1 Mai 2018
Since ‘implicit expansion’ arrived in R2016b, this will work:
A = rand(3);
B = A + 5;
or:
B = A * 5;
For all releases, using bsxfun will work:
B = bsxfun(@plus, A, 5);
or:
B = bsxfun(@times, A, 5);

Catégories

En savoir plus sur Operators and Elementary Operations 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!

Translated by