how to create a normal distribution matrix?

8 visualizaciones (últimos 30 días)
Duc-Huy Le
Duc-Huy Le el 5 de Jul. de 2019
Respondida: dpb el 5 de Jul. de 2019
Hi everyone,
I want to create a normal distribution matrix (gaussian matrix) have size 120 x 320, with value of each pixel in range 0-255.
Please help me. Thank you so much.

Respuestas (1)

dpb
dpb el 5 de Jul. de 2019
NRV=normrnd(0,1,120*320,1);
NRV=reshape(interp1([min(NRV);max(NRV)],[0;255],NRV),120,[]);

Community Treasure Hunt

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

Start Hunting!

Translated by