image processing, data stimulation

2 Ansichten (letzte 30 Tage)
mohammed abdul wadood
mohammed abdul wadood am 19 Mär. 2018
hi, i want to generation an matrix that simulate an image of size 198*211*3 so i used this code:
clc
close all
clear all
for i=1:4;
for j=1:4;
x(i,j)=rand*100;
if x(i,j)>=0 && x(i,j)<=255;
x
end
end
end
is this work correct? thank you
  1 Kommentar
Walter Roberson
Walter Roberson am 19 Mär. 2018
Code that includes "clear all" is almost never correct.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 19 Mär. 2018
x = randi([0 255], 198, 211, 3, 'uint8');
  1 Kommentar
mohammed abdul wadood
mohammed abdul wadood am 19 Mär. 2018
in facet i used this solution like this:
x=randi([0 255],198,211)
but I thought it's wrong; but now you Improve it in your solution, thank you sir, thank you so much.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by