Filter löschen
Filter löschen

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

488 Ansichten (letzte 30 Tage)
hp
hp am 1 Mai 2018
Beantwortet: Star Strider am 1 Mai 2018
plz help, how to add or multiply a constant value to all the elements of the matrix...

Antworten (1)

Star Strider
Star Strider am 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);

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by