Saving the output from a function
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dustin Snedeger
am 6 Sep. 2020
Beantwortet: Image Analyst
am 6 Sep. 2020
Is there a way to save an output from a function for later use, For example if the function outputs an array can I call the function from another file and use the outputted array for calcuations after the fact. If there is away can you showcase how to do it thanks in advance just trying to learn!
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 6 Sep. 2020
Of course. Read up on functions. Here is an example
m = rand(50);
theMax = max(m(:)) % Call the max() function for example.
% Save the result to 'answers.mat' file:
save('answers.mat', 'theMax');
Of you can use fprintf() or writematrix() or any number of other functions to save/export the variables you want.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Large Files and Big Data finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!