Variable feeding into a function
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Yewande Oni
am 3 Sep. 2015
Kommentiert: Star Strider
am 3 Sep. 2015
How can I get a variable from one script to feed into a function? Hope that makes sense?
0 Kommentare
Akzeptierte Antwort
Star Strider
am 3 Sep. 2015
If the function is in its own function .m-file in your MATLAB search path, just call the function in your script with that variable as an argument to the function, just as you would any other function.
2 Kommentare
Star Strider
am 3 Sep. 2015
Thank you anyway!
I don’t quite understand what you’re doing. It might be easiest to call your function from the script that creates the filename and pass the filename as an argument to the function.
If the function really isn’t a function but is instead another script, the easiest way I can think of just now is to write the filename to a .mat file with a specific name, then have your other script read that .mat file and get the name from it. That’s how I would do it (but then my code isn’t always as efficient as it could be).
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!