필터 지우기
필터 지우기

I did Exercise 3.1 by commenting the code. However while doing Exercise 3.2 onwards part (a) I am getting some errors. I had pasted my code below the pictures.

조회 수: 1 (최근 30일)
load ('lighthouse.mat')
w = 15;
x = 1:160;
y = 1:80;
z = round (127* exp(-1/w.^2*((y.'-40).^2+(x -80).^2)));
colormap ( gray );
[xs ,ys ,zs] = image_sample(z ,2);
za = image_system2 (zs , -10 ,35);
zb = image_system3 (za , -30 ,35);
figure (1);
subplot (2 ,2 ,1);
imagesc (x, y, z);
axis image ;
title ('Original')
subplot (2 ,2 ,2);
imagesc (xs , ys , zs);
axis image ;
title ('After Sampling')

답변 (1개)

Steven Lord
Steven Lord 2020년 9월 28일
Your assignment instructs you to write a MATLAB function image_sample but you have written a MATLAB script image_sample. See this documentation page for some information about the differences between functions and scripts.
  댓글 수: 2
SZ N
SZ N 2020년 9월 28일
Im still not getting the desired output :{..The plot just grey. Could you please help me out?
Walter Roberson
Walter Roberson 2020년 9월 28일
The code about loading an initializing variables needs to go in LAB3.m or similar name.
The first line of image_sample.m needs to start with the word "function".
The function in image_sample.m needs to be called from outside of image_sample.m and that cannot happen if image_sample.m is a script.

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

카테고리

Help CenterFile Exchange에서 Axis Labels에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by