save data in a tabel with some column
Ältere Kommentare anzeigen
Hello... :) I want to save a data from 2 textfields.. 1st textfield, save data as "X" 2nd textfield, save data as "Y"
How i can save them in a tabel, that have 3 columns..?? 1st column show the number series.. 2nd column show value of "X" 3rd column show value of "Y"
Like this..
----------------------
| No | X | Y |
----------------------
| 1. | 64 | 76 |
| 2. | 45 | 12 |
etc
Thank You before... :)
3 Kommentare
Ilham Hardy
am 15 Mai 2012
What is textfields mean exactly?
Is the textfields from GUI?
Walter Roberson
am 15 Mai 2012
Is this table to be displayed on the command window (as text) or in a file (as text), or are you using a uitable() ?
Rahma Yeni
am 15 Mai 2012
Antworten (1)
Andrei Bobrov
am 15 Mai 2012
data = ...
dataset({[64, 76; 45, 12],'X','Y'},'ObsNames',cellstr(num2str((1:2)','%-d.')))
OR
dataset({[(1:2)',[64, 76; 45, 12]],'Serial_Number','X','Y'})
3 Kommentare
Rahma Yeni
am 15 Mai 2012
Walter Roberson
am 15 Mai 2012
.mat files are binary files and are not any particular shape... definitely not "table like".
MATLAB numeric matrices cannot have column headers or row headers.
Rahma Yeni
am 15 Mai 2012
Kategorien
Mehr zu Data Type Conversion 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!