Borrar filtros
Borrar filtros

Passing a string as input in pyrunfile() function

7 visualizaciones (últimos 30 días)
Glauco
Glauco el 26 de Abr. de 2023
Respondida: Les Beckham el 26 de Abr. de 2023
The function change_delimeter.py takes as input the name of a csv file.
Now, I want to create a matlab function, delimitatore(name_file.csv), which passes the name of the csv file to change_delimeter.py
function delimitatore(name_file)
pyrunfile("change_delimeter.py 'name_file'");
end
If instead of the variable name_file I pass the actual name of the file ('name_file.csv') it works perfectly.

Respuestas (1)

Les Beckham
Les Beckham el 26 de Abr. de 2023
Perhaps this will do what you want
function delimitatore(name_file)
pyrunfile(sprintf("change_delimeter.py %s", name_file));
end

Categorías

Más información sobre Call Python from MATLAB 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