Storing the output of a program in a matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I've made a program, doesn't matter what it does, and say it's called "progA". I get the program progA to output a number into the console everytime I run it. Now I want to make another program that runs progA and stores the output in a new array.
How would I go about this?
many thanks,
Phill
0 Kommentare
Antworten (2)
KALYAN ACHARJYA
am 1 Dez. 2019
Bearbeitet: KALYAN ACHARJYA
am 1 Dez. 2019
No need to run another program to save the output of progA in array. Just do the indexing in progA, its automatically generates the array of data.
It would be more clear, if you can share the represenative/skeleton code of progA
2 Kommentare
BobH
am 5 Mär. 2020
Do you mean like this?
progA = @() 42; % return 42 for each invocation
y = progA()
y =
42
z = arrayfun(@(X) progA(), 1:473);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrices and Arrays 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!