where can I find a path of a function that matlab accessed?

1 回表示 (過去 30 日間)
alpedhuez
alpedhuez 2020 年 12 月 13 日
コメント済み: alpedhuez 2020 年 12 月 13 日
I wrote a function 'test.m'. I called the function from Livescript
test(x,y)
How can one find the directory of test.m?

採用された回答

Walter Roberson
Walter Roberson 2020 年 12 月 13 日
編集済み: Walter Roberson 2020 年 12 月 13 日
test_info = which('test');
test_dir = fileparts(test_info);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSoftware Development Tools についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by