cell - create a struct
This function returns a struct with the fields names fields1, field2, ..., and the fields values corresponding value1, value2, ...
// create a struct date date=struct('day',25,'month' ,'DEC','year',2006) //change the month date.month='AUG'; // change the year date.year=1973; //change the day date.day=19; // add a new field date.semaine=32
cell,