writecell( [.... -inf inf ...] gives 65535 and 65535 in Excel both for -inf and +inf
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
table2cell(ToperLow)
ans =
1×5 cell array
{[650]} {[-Inf]} {[-Inf]} {[-Inf]} {[500]}
>> xx = table2cell(ToperLow)
xx =
1×5 cell array
{[650]} {[-Inf]} {[-Inf]} {[-Inf]} {[500]}
writecell( xx, 'test.xls', 'Sheet', 'sheet1', 'UseExcel', false )
Resulting cells in Excel is +65535 instead of - 65535???
650 65535 65535 65535 500
3 commentaires
dpb
le 18 Août 2020
For some purposes, maybe...a string in the column instead of numeric may break import and return as cellstr() though...not convenient.
Réponses (1)
Maadhav Akula
le 20 Août 2020
Hi,
I believe this is how Excel treats Inf and -Inf in a cell, as @Binbin Qi mentioned one workaround would be to write them as strings as mentioned in the following post:
Hope this Helps!
0 commentaires
Voir également
Catégories
En savoir plus sur Data Export to MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!