i am gettint he following errors while running the below code . plz help me to figure out these
1 次查看(过去 30 天)
显示 更早的评论
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/577157/image.png)
5 个评论
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 Center 和 File Exchange 中查找有关 Nonlinear Operators 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!