フィルターのクリア

command path and pathdef

18 ビュー (過去 30 日間)
Douglas Alves
Douglas Alves 2014 年 5 月 28 日
編集済み: Matt J 2014 年 5 月 28 日
I'm trying to understand a code and there's the first line of it. Could anyone explain me what exactly this works ? The code is at the beginning what kind of conflict will I bump into if I don't do it?? What does it mean by "Avoinds naming conflicts". when I type pathdef in the prompt window it returns me a huge line with a bunch of paths what does it mean? doc pathdef didn't help very much..
% Resets the path to the initial state. Avoids naming conflicts.
path(pathdef);

採用された回答

Matt J
Matt J 2014 年 5 月 28 日
編集済み: Matt J 2014 年 5 月 28 日
It looks equivalent to the command restoredefaultpath(), erasing any modifications you've made to the MATLAB path. If you do this, and you are trying to run code (written by you) not located in your current directory, MATLAB may not be able to find it, unless there are later lines of code which build the appropriate path.
If you are deploying this code to somebody else's machine, doing this can be a way to ensure that any modifications they've made to their MATLAB path will be erased. This can be good because maybe they have user-written code on their path that will have precedence that you don't want. On the other hand, you will break their preferred path. When they want to resume work with their own code, they will have to rebuild their preferred path in some way. This could be a pain for them, if they don't have it saved, or if they don't have a startup.m file which generates it automatically.

その他の回答 (1 件)

Julia
Julia 2014 年 5 月 28 日
As I see it pathdef.m contains all Matlab paths (you can also view them when you click on "Set path" in the "Home"-Tab) and path(pathdef) sets the path(s) your programme should be using to those paths stored as Matlab paths.
I don't know your programme, so I cannot say what is meant by "Avoids naming conflicts". Does your file create new directories/files?
If so, I think path(pathdef) ensures uniqueness of the paths to this new directories/files.
  2 件のコメント
Douglas Alves
Douglas Alves 2014 年 5 月 28 日
It's a kind of 'ODEsolver' but created to a particular solution. So it basically jumps from .m file to .m file. The first .m file is actually a call to the other files. It's kinda huge and there are a lot of files that's kind of impossible to post it here. I just would like to have an overview about pathdef.. Whatever kind of code is in your mind right now how does it ensure uniqueness of the paths to new files? I just ran the program without this line and nothing changed anyways. In this case it seems to be a useless line.
Julia
Julia 2014 年 5 月 28 日
pathdef.m is only a file which contains the Matlab paths.
The paths are more clearly represented in the Set paths window.
I think this first line is there to ensure that you run your programme in the right directory. So if you cleared the line and nothing changed I assume that your default directoty is the right one.

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

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by