Convert two vectors (x and y) to a square matrix ?

조회 수: 3 (최근 30일)
Vingt100
Vingt100 2020년 3월 24일
편집: Stephan 2020년 3월 24일
So here is my problem.
I have two vectors that descibe a plot (a sinusiodal function) and I want to have the discretized matrix of this plot. It means that I want to have a 1 on the curve and 0 everywhere else.
Is this possible ?
  댓글 수: 5
J. Alex Lee
J. Alex Lee 2020년 3월 24일
do you want a pixel map (image) of the plot?
Vingt100
Vingt100 2020년 3월 24일
편집: Vingt100 2020년 3월 24일
Yes i'd like to transform my plot into an image.

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

채택된 답변

Stephan
Stephan 2020년 3월 24일
편집: Stephan 2020년 3월 24일
x = 0:0.01:6.28;
y = sin(x);
M = ones(size(x,2));
x_int = 1:size(x,2);
y_int = ceil(y * size(y,2)/(abs(min(y))+abs(max(y))) +...
size(y,2)/(abs(min(y))+abs(max(y))));
y_int(y_int>size(M,2)) = y_int(y_int>size(M,2))-1;
for k = 1:size(y,2)
M(y_int(k),x_int(k)) = 0;
end
imshow(M)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spectral Measurements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by