Need help with error code
2 ビュー (過去 30 日間)
古いコメントを表示
I am getting this error code:
Unrecognized function or variable 'UI_input_table'
When I try to run the first line of my script:
clear;
[T,file_name]=UI_input_table();
The exact same codes works on my colleagues matlab program
Not you assist me in figuring why I am getting this error code and what it means?
0 件のコメント
回答 (1 件)
Sam Chak
2025 年 4 月 3 日
Most likely, your colleagues have this function program file stored in one of the folders on their computers.
function [T, file_name] = UI_input_table()
% code
end
1 件のコメント
Walter Roberson
2025 年 4 月 3 日
UI_input_table is not a Mathworks supplied function, so it needs to be defined by a .m or .mlx file somewhere on the MATLAB path.
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!