Displaying 1 result from an estimated 1 matches for "labpcstruct".
2008 Mar 26
2
Moving data between R and Matlab back and forth?
...ing is as expected
--------------------------------------------------------------
load('labpc.mat')
>> labpcdata
labpcdata =
Maker: {6x1 cell}
CPUspeed: [6x1 double]
HDD: [6x1 double]
RAM: [6x1 double]
>> class(labpcdata)
ans =
struct
>> labpcstruct = labpcdata
>> save('labpcstruct.mat', 'labpcstruct')
---------------------------------------------------------
-------------------------------------------------------
Back in R - how to rebuild the data frame from the list labpcstruct?
--------------------------------------...