Func thar operates like repmat

Hi i need to write in one code line function who does the same as repmat function Anyone's idea please :)

 Accepted Answer

Hint:
Instead of writing
MyRGBImage = repmat(MyGrayScaleImage, 1, 1, 3)
I write
MyRGBImage = repmat(MyGrayScaleImage(:,:, ones(1,3))

2 Comments

Not what i ment,i need to change matrix without the repmat func
Sorry, I meant to write,
MyRGBImage = MyGrayScaleImage(:,:, ones(1,3))

Sign in to comment.

More Answers (1)

yuval ohayon
yuval ohayon on 31 Jul 2017
Not what i ment.. Without using repmat function..

1 Comment

Please do not post comments in the section for answers.

Sign in to comment.

Categories

Tags

Community Treasure Hunt

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

Start Hunting!