FactSet: "Unrecognized function or variable 'fds'."
2 ビュー (過去 30 日間)
古いコメントを表示
I've checked the requirements for FactSet https://mathworks.com/help/datafeed/data-server-connection-requirements.html and besides having a license, there are no other requirements.
I am running the following command on OSX
c = fds(login, password); % both login and password are defined
which returns
Unrecognized function or variable 'fds'.
Datafeed toolbox is installed, and the following command works
c = fred('https://fred.stlouisfed.org/');
Any help is welcome.
1 件のコメント
vidyesh
2023 年 10 月 27 日
Can you check whether 'fds' has been assigned as a variable. Run
who fds
to check.
回答 (1 件)
Shivang
2023 年 12 月 21 日
Hi Artem,
I understand you're running into an error while using the 'fds' function from the Datafeed Toolbox.
The error you encountered likely indicates a problem with your MATLAB search path.
You can try restoring the MATLAB search path and rehashing the toolbox cache:
>> restoredefaultpath % This will remove any custom paths
>> rehash toolboxcache
>> savepath
Refer to this MATLAB Answer for more details on the above steps: https://www.mathworks.com/matlabcentral/answers/96005-why-do-i-get-the-error-unrecognized-function-or-variable
If this doesn't help, I would suggest contacting Technical Support: https://www.mathworks.com/support/contact_us.html
Hope this helps.
-Shivang
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Biological and Health Sciences についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!