how to convert a waveform in 2D matrix?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ajeet verma
el 31 de Mayo de 2017
i want to generate triangular fringe pattern without using meshgrid function i have a code for triangular wave and i want to convert it into fringe pattern 2D matrix.
%triangular wave form
t=0:1/100:1;
f=5;
I3=asin(sin(2*pi*f*t));
plot(I3)
0 comentarios
Respuesta aceptada
KSSV
el 31 de Mayo de 2017
YOu can use repmat
%triangular wave form
t=0:1/100:1;
f=5;
I3=asin(sin(2*pi*f*t));
plot(I3)
N = 101 ;
iwant = repmat(I3,N,1) ;
pcolor(iwant)
shading interp
1 comentario
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!