P files cannot be analyzed to find their dependencies. Please add P file dependencies manually

17 ビュー (過去 30 日間)
Hello, I am making a standalone GUI application that uses the most recent Arduino support package. My GUI does not work because one certain file, as shown in the image is a .p file.
MATLAB advises me to 'P files cannot be analyzed to find their dependencies. Please add P file dependencies manually'.
To be exact, the file name is: 'C:\MATLAB\SupportPackages\R2015b\arduinoide\toolbox\realtime\targets\arduinoide \+ide\+internal\getArduinoIDERootDir.p'
I do not know how to work with .p files in such a manner and am unable to find any sources to solve the problem.
  6 件のコメント
Jan
Jan 2019 年 7 月 11 日
You can call clear all at first and after calling the code, which contains the P-file, check the list of loaded functions:
[M,X,C] = inmem('-completenames');
Care for including these files.
Gasem
Gasem 2023 年 10 月 13 日
Hi. I have same error in my appdesigner code.
what have to do to solve it?
I know what is my app designer problem and requirement . but I don't know how can I add this pfiles to my app designer .
please guide me.

サインインしてコメントする。

採用された回答

Jan
Jan 2017 年 12 月 6 日
編集済み: Jan 2019 年 10 月 5 日
I'd start with a web search: Ask your favorite search engine for "Matlab get dependencies of P file". You will find e.g.:
There is a chance, that getArduinoIDERootDir.p does not call any other functions, which have not been included from somewhere else. So you could simply try it: Ignore the warning and check, if the resulting executable works reliably. If not, the error message might reveal the required subfunctions. Or use one of the above mentioned methods to analyze the dependencies.
[EDITED] You can call clear all at first and after calling the code, which contains the P-file, check the list of loaded functions:
[M,X,C] = inmem('-completenames');
Care for including these files.
  6 件のコメント
Jan
Jan 2021 年 3 月 19 日
@Edwin Goh: If the problem is, that the folder is hidden, unhide it.
Aiden Mitio
Aiden Mitio 2021 年 4 月 7 日
@Edwin Goh I was able to manually add mine from the compile window shown, if they are hidden perhaps in the code set the environment to look in that folder.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInstrument Control Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by