필터 지우기
필터 지우기

Any one give me an example for false output in ismatrix.

조회 수: 2 (최근 30일)
Stalin Samuel
Stalin Samuel 2016년 7월 19일
댓글: Stalin Samuel 2016년 7월 19일
I wondering if anyone point out a input which gives false output for ismatrix

채택된 답변

Matt J
Matt J 2016년 7월 19일
편집: Matt J 2016년 7월 19일
>> ismatrix(rand(3,3,3))
ans =
0
As more exotic example,
>> ismatrix(myclass)
ans =
0
where myclass is defined as follow,
classdef myclass
methods
function sz=size(obj)
sz=1;
end
end
end
  댓글 수: 4
Matt J
Matt J 2016년 7월 19일
From the help doc for ismatrix
ismatrix(M) returns logical 1 (true) if SIZE(M) returns [m n]
with nonnegative integer values m and n, and logical 0 (false) otherwise.
Stalin Samuel
Stalin Samuel 2016년 7월 19일
Thanks dear

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

추가 답변 (1개)

the cyclist
the cyclist 2016년 7월 19일
M = zeros(2,3,5)
ismatrix(M)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by