i want to build a database with column and rows

3 vues (au cours des 30 derniers jours)
Bikash
Bikash le 16 Avr 2014
Réponse apportée : Bikash le 20 Avr 2014
The table should have fields
NAME .... AGE .. SALARY
ashok .... 23 .....2300
john ..... . 34 .... 3400
horis ..... 40 .... 6700
and salary is a variable 'n' which changes the salary in the database ,when n gets the value in the command window and update the database .Please suggest
  1 commentaire
Alberto
Alberto le 16 Avr 2014
I suggest to code your data as as a struct. For example:
D.id(1).Name= 'asrock'
D.id(1).Age= '23'
D.id(1).Salary= '2300'
D.id(2).Name= 'john' ...
I think its really confortable like this.

Connectez-vous pour commenter.

Réponse acceptée

Mischa Kim
Mischa Kim le 16 Avr 2014
Modifié(e) : Mischa Kim le 16 Avr 2014
Bikash, use table, e.g.,
NAME = {'ashok';'john';'horis'};
AGE = [23;34;40];
SALARY = [2300;3400;6700];
T = table(NAME, AGE, SALARY)

Plus de réponses (1)

Bikash
Bikash le 20 Avr 2014
Thanks !

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by