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

5 Comments
Jan
on 8 Apr 2021
This is the part of the error message, which tells, where the code failed. Unfortunately the message does not mention the reason of the problem. The message "Assertion failed" is not clear enough to guess the cause.
Please post code as text, not as screenshot. Then it is much easier to copy&paste parts of it to write an answer.
Is "z_cal_cuboid_lbptop_vr" a function of Matlab's toolboxes? If not, did you ask the author of the code already?
Gowtham Dubakula
on 8 Apr 2021
Gowtham Dubakula
on 8 Apr 2021
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.
Gowtham Dubakula
on 8 Apr 2021
Answers (0)
Categories
Find more on Descriptive Statistics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!