Func thar operates like repmat
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi i need to write in one code line function who does the same as repmat function Anyone's idea please :)
댓글 수: 0
채택된 답변
Walter Roberson
2017년 7월 30일
Hint:
Instead of writing
MyRGBImage = repmat(MyGrayScaleImage, 1, 1, 3)
I write
MyRGBImage = repmat(MyGrayScaleImage(:,:, ones(1,3))
댓글 수: 2
Walter Roberson
2017년 7월 31일
Sorry, I meant to write,
MyRGBImage = MyGrayScaleImage(:,:, ones(1,3))
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!