i am gettint he following errors while running the below code . plz help me to figure out these

조회 수: 1 (최근 30일)
  댓글 수: 5
Jan
Jan 2021년 4월 8일
편집: Jan 2021년 4월 8일
By the way, this is a bad idea:
video_speaker_name=char(dd.name);
It pads the CHAR matrix with spaces, if the names have different sizes. Use a cell arry instead:
video_speaker_name = {dd.name};
But the main problem is, that we do not have any chance to understand the cause of the problem based on the mnessage "Assertion failed". Please check the mentioned line 290 to find out, what has been asserted.

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

답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by