From: shaimaa khamis on 13 Jun 2010 07:47 I have the cancer dataset downloaded from UCI repository I saved the data in excel format on opening the data using (xlsread) function in matlab i found that the data was multiplied by factor this happened because the some colums with very large numbers and others with very small number I dont know what to do in order to over come this problem
From: us on 13 Jun 2010 07:55 "shaimaa khamis" <shaimaa.bioinformatics(a)gmail.com> wrote in message <hv2gfn$4vq$1(a)fred.mathworks.com>... > I have the cancer dataset downloaded from UCI repository I saved the data in excel format on opening the data using (xlsread) function in matlab i found that the data was multiplied by factor this happened because the some colums with very large numbers and others with very small number > I dont know what to do in order to over come this problem do you refer to the display in ML's command window(?)... - if so: nothing to worry(!)... it's just for convenience... us
From: shaimaa khamis on 13 Jun 2010 09:20 "us " <us(a)neurol.unizh.ch> wrote in message <hv2guo$3p7$1(a)fred.mathworks.com>... > "shaimaa khamis" <shaimaa.bioinformatics(a)gmail.com> wrote in message <hv2gfn$4vq$1(a)fred.mathworks.com>... > > I have the cancer dataset downloaded from UCI repository I saved the data in excel format on opening the data using (xlsread) function in matlab i found that the data was multiplied by factor this happened because the some colums with very large numbers and others with very small number > > I dont know what to do in order to over come this problem > > do you refer to the display in ML's command window(?)... > - if so: nothing to worry(!)... it's just for convenience... > > us Thank you for answering I dont know this command can you plz help
From: us on 13 Jun 2010 12:03 "shaimaa khamis" <shaimaa.bioinformatics(a)gmail.com> wrote in message <hv2lu5$amg$1(a)fred.mathworks.com>... > "us " <us(a)neurol.unizh.ch> wrote in message <hv2guo$3p7$1(a)fred.mathworks.com>... > > "shaimaa khamis" <shaimaa.bioinformatics(a)gmail.com> wrote in message <hv2gfn$4vq$1(a)fred.mathworks.com>... > > > I have the cancer dataset downloaded from UCI repository I saved the data in excel format on opening the data using (xlsread) function in matlab i found that the data was multiplied by factor this happened because the some colums with very large numbers and others with very small number > > > I dont know what to do in order to over come this problem > > > > do you refer to the display in ML's command window(?)... > > - if so: nothing to worry(!)... it's just for convenience... > > > > us > Thank you for answering > I dont know this command can you plz help well... one of the solutions help format; % eg, format short v=10.^(0:5:10); disp(v); % <- or simply: v %{ 1.0e+010 * 0.0000 0.0000 1.0000 %} format short g disp(v); %{ 1 1e+005 1e+010 %} us
|
Pages: 1 Prev: reading multiple images in matlab Next: replace one char using its index |