multiply a matrix by a specific value from a vector

3 views (last 30 days)
Hi : I want to multiply a matrix (resultx) sized 10001x10001 by only one value from etae which is sized 1x50.I want to access only the first value of etae and the last value of eate separately. can I do it like this:
Iph1=pinc*(resultx).^2*(etae(1,1))/h*v) % for first value
and,
Iph2=pinc*(resultx).^2*(etae(1,50))/h*v) % for last value
and, did I square (resultx) correctly?. should the (.) be there?. pinc,h, v, etae are single values. resultx is (mXn)
  2 Comments
James Tursa
James Tursa on 8 Apr 2015
What are the sizes of pinc, h, and v? Scalars? As written, only h is in the denominator. Is this what you want or do you want v there as well?
Naema
Naema on 8 Apr 2015
Edited: Naema on 8 Apr 2015
both h and v are in the denominator. pinc,h,v are scalars

Sign in to comment.

Accepted Answer

Jeffrey Girard
Jeffrey Girard on 8 Apr 2015
Edited: Jeffrey Girard on 8 Apr 2015
Let's use a cleaner example:
a = 5;
b = [1,2,3,4;5,6,7,8];
c = [0.5,1.0,1.5,2.0];
So if I want to multiply the matrix b by scalar a and then add that product's square to the first value of vector c, you should do the following:
d = (b .* a) .^ 2 + c(1);
And if you want to do the same but with the last value of vector c , you should do the following:
d = (b .* a) .^ 2 + c(end);
The dot before a mathematical operator (e.g., .*) indicates that you want to perform the operation using array operations (or element-wise) rather than matrix operations. If you are unfamiliar with matrix algebra, you want to be using the dots (i.e., array operations). In some cases, such as when using scalars, the two are equivalent, but it will be safer for you to use the dots as I did above.
  1 Comment
Naema
Naema on 8 Apr 2015
Edited: Naema on 8 Apr 2015
so, is this the right answer?:
Iph1=pinc.*(resultx).^2.*etae(1)/h/v;

Sign in to comment.

More Answers (0)

Categories

Find more on Operating on Diagonal Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!