pls explain me the star marked lines,i m not getting that

조회 수: 3 (최근 30일)
Komal Gaikwad
Komal Gaikwad 2018년 2월 16일
댓글: Komal Gaikwad 2018년 2월 17일
function fltimg_Callback(hObject, eventdata, handles)
% hObject handle to fltimg (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
global im_n;
global im;
global im_sz;
global d;
WIN_sz=21; ******************
ln=floor(WIN_sz/2);
A_mat=zeros(1,256); **************
%%in the code there is not declared WIN_sz abd A_mat

답변 (1개)

KSSV
KSSV 2018년 2월 16일
WIN_sz=21; % Variable WIN_sz is assigned value 21
ln=floor(WIN_sz/2);
A_mat=zeros(1,256); % A matrix/vector A_mat is initialized with zeros
  댓글 수: 4
Image Analyst
Image Analyst 2018년 2월 16일
zeros() is a function. Click in it and type F1 to bring up help and it will tell you what all the input arguments mean.
Komal Gaikwad
Komal Gaikwad 2018년 2월 17일
thank you so much all of you.

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by