How to make matrix dimensions equal?

Size of x is 99*1000
Size of win is 1000*1
How to make both x and win the same dimension
Y=x.*win

2 Comments

why you want to make same dimension? Each column of x is same as win.
I am getting an error that the dimensions are not equal

Sign in to comment.

Answers (1)

Maybe you want this
%-----Example-------------
x=rand(99,1000)
win=rand(1000,1)
%---------------------------
out=bsxfun(@times,x,win')

Categories

Asked:

on 12 May 2016

Commented:

on 12 May 2016

Community Treasure Hunt

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

Start Hunting!