Adding functions permanently to matlab

182 visualizaciones (últimos 30 días)
joseph Frank
joseph Frank el 2 de Jul. de 2011
Comentada: AMM el 21 de Mayo de 2020
I have many self developed functions in a folder called Finance (C:\Documents\MATLAB\Finance). I sthere a way to add these functions permanently to my matlab path so whenever i use a script this script would call them automatically?

Respuesta aceptada

Matt Fig
Matt Fig el 2 de Jul. de 2011
Yes, look under File>Set Path. Add the directory Finance to the path. This should persist between sessions.
  1 comentario
Nagabhushan SN
Nagabhushan SN el 31 de Ag. de 2018
In MatLab R2018a, look under Home > ENVIRONMENT > Set Path

Iniciar sesión para comentar.

Más respuestas (2)

Paulo Silva
Paulo Silva el 2 de Jul. de 2011
use pathtool to select that folder and save

the cyclist
the cyclist el 2 de Jul. de 2011
Yes. Use the path() or addpath() command in a file called startup.m, in the top-level MATLAB directory. For example, where is how I added a utilities directory (on a Mac):
path(path,genpath('/Users/thecyclist/Documents/MATLAB/utilities'));
That file is run at MATLAB start.
  3 comentarios
John D'Errico
John D'Errico el 21 de Mayo de 2020
This is a completely different question. Please don't resurrect an old question to ask a new one.
But do NOT put functions in the matlabroot directories. The toolbox directories are cached on startup, so any changes you make to your personal functions will not be seen.
AMM
AMM el 21 de Mayo de 2020
John-
I asked here because I thought my query was directly relevant to the OP's question (modulo "how" vs. "where"). My apologies. I'll re-post this as a new question.
Thanks also for the info about caching at startup. I can easily imagine this would result in confusing/unexpected behavior if I were to edit any of those functions during a session, then fail to quit/restart. Cheers.

Iniciar sesión para comentar.

Categorías

Más información sobre Search Path 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