I've got a wrong solution when I subtract two matrices with Incompatible Sizes between the row and column.
>> s = [-1 8 5]
s =
-1 8 5
>> t = [7;0;11]
t =
7
0
11
>> s-t
ans =
-8 1 -2
-1 8 5
-12 -3 -6
it should be the following answer:
??? Error using ==> - Matrix dimensions must agree.

댓글 수: 4

Birdman
Birdman 2018년 2월 27일
Where is the following answer?
Abo Mohammed
Abo Mohammed 2018년 2월 27일
편집: Abo Mohammed 2018년 2월 27일
it should be expect a following error:
??? Error using ==>- Matrix dimensions must agree.

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

 채택된 답변

Torsten
Torsten 2018년 2월 27일

0 개 추천

https://blogs.mathworks.com/loren/2016/10/24/matlab-arithmetic-expands-in-r2016b/
Without further comment on the usefulness of this feature.
Best wishes
Torsten.

추가 답변 (1개)

KSSV
KSSV 2018년 2월 27일

0 개 추천

s = [-1 8 5] ;
t = [7;0;11] ;
if isequal(size(s),size(t))
iwant = s-t ;
else
error('using ==>- Matrix dimensions must agree.')
end

댓글 수: 1

That prohibits scalar expansion as well. If you want to allow scalar s with non-scalar t or vice versa:
if isequal(size(s),size(t)) || isscalar(s) || isscalar(t)
iwant = s-t ;
else
error('using ==>- Matrix dimensions must agree.')
end

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

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

질문:

2018년 2월 27일

댓글:

2018년 2월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by