how to multiply a row with 1st and 2nd row of a matrix seperately
1 view (last 30 days)
Show older comments
>> y_0
y_0 =
0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1
>> z
z =
1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0
1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0
I am trying to multiply y_0 with row 1 of z and row 2 of z. but I am not sure how
i tried :z and z: but its giving errors. Kindly help
Answers (2)
Cris LaPierre
on 8 Dec 2018
If you are new to MATLAB, I'd suggest MATLAB Onramp. Chapter 6 talks about performing calculations with arrays.
0 Comments
Star Strider
on 8 Dec 2018
y_0 = [0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1];
z = [1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0
1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0];
Out = bsxfun(@xor, y_0, z)
producing:
Out =
2×16 logical array
1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
0 Comments
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!