Editar: Se edita el código y se pega el nuevo resultado.
Estoy intentando generar números aleatorios utilizando randi en MATLAB. Estoy generando 100, 1000 y 100.000 números aleatorios, respectivamente, entre 50 y 100. El siguiente es mi código:
clc
clear all
close all
x = randi([50 100],1,100) % random numbers generated
subplot(221)
hist(x) % ploting these numbers on a histogram
title ('Histogram for 100')
y = randi([50 100],1,1000) % random numbers generated
subplot(222)
hist(y)
title ('Histogram for 1000')
z = randi([50 100],1,100000) % random numbers generated
subplot(223)
hist(z) % ploting these numbers on a histogram
title ('Histogram for 100,000')
Pero obtengo el siguiente resultado:
¿Es correcto mi código?