i which library can i find those two functions (h-plane and e-plane) ?

1 visualización (últimos 30 días)
Mouzah Aldossary
Mouzah Aldossary el 7 de Mayo de 2021
Editada: John D'Errico el 7 de Mayo de 2021
i which library can i find those two functions (h-plane and e-plane) ?
  1 comentario
DGM
DGM el 7 de Mayo de 2021
Are you sure that's what they're called? Functions can't have a '-' in the name, otherwise it would get interpreted as e minus plane(). Where did you find a reference to these?

Iniciar sesión para comentar.

Respuestas (1)

John D'Errico
John D'Errico el 7 de Mayo de 2021
Editada: John D'Errico el 7 de Mayo de 2021
There is NO such library, because those are not legal function names in MATLAB. A dash is not legal in a name, in a function OR in a variable. MATLAB will try to interpret that as a subtraction of two terms, and then look for functions or variables named h and plane, wanting to subtract one from the other.
Perhaps you were told to use functions with an underscore in the name, thus h_plane and e_plane. This is a not uncommon way to name functions or variables. However...
help h_plane
h_plane not found. Use the Help browser search field to search the documentation, or type "help help" for help command options, such as help for methods.
help e_plane
e_plane not found. Use the Help browser search field to search the documentation, or type "help help" for help command options, such as help for methods.
But as you see, those are not functions that any toolbox in MATLAB provides, and they are not part of MATLAB itself.
So it is possible they are part of some toolbox that your teacher provides, or a colleague. In that case, talk to them.

Categorías

Más información sobre Live Scripts and Functions en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by