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!