plot an image using pulsating voltage

i have a data i.e voltage values which are varying at a faster rate ,
how to show them as a grayscale image with 32 by 32 size( there should be image with 32 by 32 pixels )
and what should be the range of the voltage values ?

1 comentario

amogha
amogha el 18 de Jun. de 2021
a = csvread('lt1.csv');
B = rescale(a,0,255);
V=B
N = numel(V) ;
M = NaN(ceil(sqrt(N))) ;
M(1:N) = V ;

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Display Image en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 18 de Oct. de 2012

Comentada:

el 18 de Jun. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by