is it possible to make an image in GUI matlab which is not predefine but define by user input?

1 回表示 (過去 30 日間)
is it possible to make an image in GUI matlab which is not predefine but define by user input?

採用された回答

Walter Roberson
Walter Roberson 2015 年 11 月 29 日
n = input('how big a square do you want?');
v = input('how bright do you want, 0-255');
MyImage = zeros(n,n,'uint8');
MyImage(:) = v;
image(MyImage);
colormap(gray(256))

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by