필터 지우기
필터 지우기

What is the meaning of "Trailing string must be 'omitan' or 'includenan' " on MATLAB. I run the programm below but this error message displays

조회 수: 2 (최근 30일)
I have problem on Line 272
  댓글 수: 2
Jan
Jan 2022년 2월 8일
We cannot run your code due to the missing input files. It is hard to guess, which line throws the error, but you do have this important information on the screen already. So please post the complete error message to make it easier to help you.
Thomas TJOCK-MBAGA
Thomas TJOCK-MBAGA 2022년 2월 8일
That is the complete error message Error using max Trailing string input be 'omitan' or 'includenan'.
Error in multis_multil (Line 272) err = max (ans(c-cn(1:ix:N,:,:)), [ ], 'all');

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

채택된 답변

Stephen23
Stephen23 2022년 2월 8일
편집: Stephen23 2022년 2월 8일
The 'all' option is not available in your version (R2016a). It was introduced in R2018b:
You can probably replace that line with the classic approach using a colon:
tmp = abs(c-cn(1:ix:N,:,:));
err = max(tmp(:));
  댓글 수: 4
Stephen23
Stephen23 2022년 2월 8일
편집: Stephen23 2022년 2월 8일
MakerIndices was introduced in R2016b. It will not work on your version.
Please remember to accept my answer, which answers your original question.
Thomas TJOCK-MBAGA
Thomas TJOCK-MBAGA 2022년 2월 9일
I solved the problem another way by directly putting the markers in the plot command and it works. Thank you very much for your contribution

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

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by