Checking if a function is part of / which toolbar

We have a relatively "rich" matlab installed on our workstations. Now I need to send some kind of code ... and I would like to check what tools it requires for it to work correctly.

What would be the easiest way to do this?

How to find out which feature set belongs to a function?

+4
source share
1 answer

I see two questions

What toolbars are needed for the function I want to send?

You need to generate a Change Report . As you can see in the link I posted, the necessary toolbars are listed near the end.

Another way to get this depfun information is to give you the files your function depends on.

THIS is what you really want - depdir - it will display the dependent directory of your M file.

Which toolbar does my function belong to?

You can get this information using the which command - it will tell you where it is and indicate if it is a function built-in.

+7
source

Source: https://habr.com/ru/post/1301878/


All Articles