Simple matlab doubt in a coding
조회 수: 3 (최근 30일)
이전 댓글 표시
In a code there is a line:
MMt=@(z) M(Mt(z))-------------------->(1) where
M - Either a handle to a function that takes a N vector and returns a K vector , or a KxN matrix.
Mt - Handle to a function that takes a K vector and returns an N vector.
What the above line eq(1) indicates. What is the meaning of '@'. Please help...................
댓글 수: 0
채택된 답변
Miroslav Balda
2013년 2월 21일
See
http://www.mathworks.com/help/matlab/matlab_prog/anonymous-functions.html
댓글 수: 2
Anu Sebastian
2021년 3월 25일
편집: Anu Sebastian
2021년 3월 25일
Cannot get any output from this code
global nimg newpixel=rgb2gray(nimg); glcm = graycomatrix(newpixel,'Offset',[2 0]); stats = graycoprops(glcm,{'Energy','Homogeneity'}); settest = [ stats.Energy stats.Homogeneity]; settest=[settest 1]; save('testdataset.mat','settest');
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Environment and Settings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!