Tab autocompletions in functions for paths
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Andrea Somma
el 7 de Oct. de 2023
Is it possible to get paths autocompletions even in functions created by the user? For example if I create a function that gets a path as a input variable, is it possible to make sure that matlab knows that the variable is a path and checks for possible solutions in the written directory? It would be also interesting if this is made inside the function WITHOUT changing matlab settings to make it easily distributable
0 comentarios
Respuesta aceptada
Dheeraj
el 26 de Oct. de 2023
Editada: Dheeraj
el 31 de Oct. de 2023
Hi,
I understand you want to know if it is possible to possible to ensure that MATLAB recognizes the input variable as a path and checks for possible solutions in the written directory.
Yes, you can do this by using the “dir” function to list all files in a directory and then use the“load” function to load the file into your function. Here is an example of how you can do this assuming the path directs to a “.mat” file.
function testfunction(pathToFile)
% Check if pathToFile is a directory
if isfolder(pathToFile)
% List all files in the directory
files = dir(fullfile(pathToFile, '*.mat'));
% Load each file into your function
for i = 1:numel(files)
data = load(fullfile(pathToFile, files(i).name));
% Do something with the data
end
else
% Load the file into your function
data = load(pathToFile);
% Do something with the data
end
end
If you wish to make this change in MATLAB settings, you could refer to this MATLAB answer that has been previously posted and answered.
Hope this helps!
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!