- documentation
- File Exchange
- The internet
is logfsgram() an inbuit function in matlab?
1 回表示 (過去 30 日間)
古いコメントを表示
one code had mentioned this function. but when i run that code its giving error saying undefined function. what is other option for this?
0 件のコメント
採用された回答
Stephen23
2015 年 4 月 10 日
編集済み: Stephen23
2015 年 4 月 10 日
You can use which to check for the existence of any function or variable name. Here I try it with sin and the function that you give in the title of your question:
>> which sin
built-in (C:\Program Files\MATLAB\R2010b\toolbox\matlab\elfun\@double\sin) % double method
>> which logfsgram
'logfsgram' not found.
Note even if the function is not found that there may actually be a MATLAB function with this name, but that your license does not give you access to the particular toolbox that it is located in.
If it cannot be found then search these locations:
Often these functions can only be obtained from the person who wrote that code... so you need to track them down and ask for a copy!
4 件のコメント
Stephen23
2015 年 4 月 10 日
Ask the lovely people at "http://labrosa.ee.columbia.edu", as presumably they know more about this than any one here does. As in, they probably wrote this function. Try writing to them.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Time-Frequency Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!