how to create a table in matlab to list my results in without the need to run the program each time to get the results and plot
Ältere Kommentare anzeigen
i ran the same program twice in two cases to get the value of SNR & BER and i got two list of values for each .. how can i apply it in a runnable table plz?
Akzeptierte Antwort
Weitere Antworten (2)
Image Analyst
am 27 Dez. 2012
0 Stimmen
What is a "runnable table"? What does "apply" mean? If you want to save variables from a run of your program, you can use the save() function. If you need to recall them into another run of your program, you can use the load() function. If you want to have a table, you can use the uitable() function or GUIDE to create a grid/table. Beyond that, I have no more guesses about what you mean.
4 Kommentare
mary
am 27 Dez. 2012
Image Analyst
am 28 Dez. 2012
I don't have randsrc() so I can't run your program. You can use uitable() to create a table, then do something like
set(handleToYourTable, 'Data', yourMatrix);
mary
am 28 Dez. 2012
Image Analyst
am 29 Dez. 2012
Pass them via the argument list, or via .mat files.
Rick Rosson
am 29 Dez. 2012
0 Stimmen
Please take a look at this self-paced tutorial:
It will answer this question along with many others that you may have.
Kategorien
Mehr zu Descriptive Statistics finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!