Missing `suptitle` and `writeVideo` functions
Show older comments
Hello everybody out there using MATLAB,
It seems as I would miss the suptitle and writeVideo functions, but they should be included in the latest MATLAB version (2019a) by default, right?
>> suptitle
Undefined function or variable 'suptitle'.
>> writeVideo
Undefined function or variable 'writeVideo'.
>> which writeVideo
'writeVideo' not found.
>> methods(vid)
Undefined function or variable 'vid'.
How could I make sure my path is set correctly?
Did I forget to load a toolbox?
Which additional diagnostics could I run to pin down the problem?
Accepted Answer
More Answers (1)
Steven Lord
on 7 May 2019
2 votes
If you're using release R2018b or later, use the sgtitle function instead of the suptitle function that is part of the Bioinformatics Toolbox demo.
The writeVideo function is a method of the VideoWriter object. You must call it with a VideoWriter object (that you have opened using open) as its first input, as you can see from the fact that both entries in the Syntax section on its documentation page list two input arguments. If you have not yet created a VideoWriter object in this session, MATLAB may not have loaded the class and its methods into memory which is why the writeVideo method did not appear in the output of which.
Categories
Find more on App Building 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!