export table to excell
export table to excell
(OP)
hello,
I'm pretty unexperienced with matlab, so i hope my question is an easy one for you guys...
Using matlab i've made a chemical reactor model. For this model i used a standard ODE function. the output of the current model is a graph, which displays the calculated concentrations as a function of time. what i would like now is to access the generated data in table format. In the workspace only the time variable is shown, how can i view the calculated (concentration) parameters?
regards,
Evert
I'm pretty unexperienced with matlab, so i hope my question is an easy one for you guys...
Using matlab i've made a chemical reactor model. For this model i used a standard ODE function. the output of the current model is a graph, which displays the calculated concentrations as a function of time. what i would like now is to access the generated data in table format. In the workspace only the time variable is shown, how can i view the calculated (concentration) parameters?
regards,
Evert





RE: export table to excell
I arrange input and output vectors as columns in a new matrix and save it in ASCII.
This *.txt can be read by excell and other programs.
An example:
CODE
save M_MSpin_o.txt M_MS_O -ascii
RE: export table to excell
i will see if i can figure it out now
Evert