필터 지우기
필터 지우기

how to convert a wave form into 2D matrix form using for loop?

조회 수: 1 (최근 30일)
ajeet verma
ajeet verma 2017년 8월 7일
댓글: ajeet verma 2017년 8월 7일
my code is here
%%STEP FIRST (wave form)
clc;
clear all;
Imax=0.8;
Imin=0.2;
Im=Imax-Imin;
T = 20;
s1= @(x) ((2*Im*x/T)+Imin+Im/2).*(0<=x & x<=T/4) +((-2*Im*x/T)+Imin+3*Im/2).*(T/4<=x & x<=3*T/4)+((2*Im*x/T)+Imin-3*Im/2).*(3*T/4<=x & x<=T);
x = linspace(0, 20);
I1 = s1(x);
figure(1),plot(x,I1)
% second step (2D matrix image)
m=1000;
n=1000;
for i=1:m
for j=1:n
s1= @(x) ((2*Im*x/T)+Imin+Im/2).*(0<=x & x<=T/4) +((-2*Im*x/T)+Imin+3*Im/2).*(T/4<=x & x<=3*T/4)+((2*Im*x/T)+Imin-3*Im/2).*(3*T/4<=x & x<=T);
I(i,j)=s1*(j/n+i/m);
end
end
imshow(I,[]);
second step is not working, where is wrong? please help please find attachment

채택된 답변

KSSV
KSSV 2017년 8월 7일
clc;
clear all;
Imax=0.8;
Imin=0.2;
Im=Imax-Imin;
T = 20;
s1= @(x) ((2*Im*x/T)+Imin+Im/2).*(0<=x & x<=T/4) +((-2*Im*x/T)+Imin+3*Im/2).*(T/4<=x & x<=3*T/4)+((2*Im*x/T)+Imin-3*Im/2).*(3*T/4<=x & x<=T);
x = linspace(0, 20);
I1 = s1(x);
figure(1),plot(x,I1)
% second step (2D matrix image)
m=1000;
n=1000;
I = zeros(m,n) ;
for i=1:m
for j=1:n
s1= @(x) ((2*Im*x/T)+Imin+Im/2).*(0<=x & x<=T/4) +((-2*Im*x/T)+Imin+3*Im/2).*(T/4<=x & x<=3*T/4)+((2*Im*x/T)+Imin-3*Im/2).*(3*T/4<=x & x<=T);
I(i,j)=s1(j/n+i/m);
end
end
imshow(I,[]);
  댓글 수: 4
ajeet verma
ajeet verma 2017년 8월 7일
if we reduce the value of image size (1000,1000) to (100,100) it works properly,
ajeet verma
ajeet verma 2017년 8월 7일
but desired result is not coming

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by