Sir plz help me to rectify this error

1 回表示 (過去 30 日間)
kaavya subramani
kaavya subramani 2016 年 8 月 6 日
コメント済み: kaavya subramani 2016 年 8 月 11 日
X=reshape(x,size(Y));
where x=1; and Y=256 * 256 uint8
I got the error like this
"To RESHAPE the number of elements must not change."

採用された回答

Image Analyst
Image Analyst 2016 年 8 月 6 日
Since x=1, you can use ones():
X = ones(size(Y)); % X is a double
If x is not one, but some other scalar, then you can use.
X = x * ones(size(Y)); % X is a double
If you want X to also be uint8, pass that class in:
X = ones(size(Y), 'uint8'); % Now X will also be uint8
  1 件のコメント
kaavya subramani
kaavya subramani 2016 年 8 月 11 日
Thanks a lot sir

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2016 年 8 月 6 日
You cannot reshape a scalar into a 256 by 256 matrix. reshape() cannot create new data.
Perhaps you want
X = repmat(x, size(Y));

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by