Missing `suptitle` and `writeVideo` functions
古いコメントを表示
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?
採用された回答
その他の回答 (1 件)
Steven Lord
2019 年 5 月 7 日
2 投票
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.
カテゴリ
ヘルプ センター および File Exchange で App Building についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!