0

我在将数据导出到 Excel 文件时遇到了一些问题。例如

这是结果,问题是右端的空白。假设有 0.947227532 但有些是空的。我有一个模糊的猜测,这是因为它连续具有相同的值。请告诉我该怎么办。

 0.690745994    18.05949033 1.192653957 0.396440197
-0.044258514    3.46265691  0.947227532 
 0.679917786    12.28067074 1.322402497 0.396440197
 0.639375225    16.35981089               
 0.254060838
 0.637346185    16.30103417 1.034478957 0.241511727
 0.317693262    0.947227532 1.000000167 2.23117E-06
 0.669425212    14.80575942 1.007101536 0.094840169
 0.635785401    15.01130502 1.021861337 0.194297042
 0.640530449    16.36085872 1.039032143 0.254278537

rhoV3;
xlswrite('MING.xls', rhoV3, 'MING', 'M17')

rhoV4;
xlswrite('MING.xls', rhoV4, 'MING', 'Q17')

PV;
xlswrite('MING.xls', PV, 'MING', 'AA17')

WP2;
xlswrite('MING.xls', WP2, 'MING', 'S17')

Cd2;
xlswrite('MING.xls', Cd2, 'MING', 'T17')

这些

4

1 回答 1

0

更改您的代码,以便您可以在屏幕上看到您正在编写的数组的值:

rhoV3
xlswrite('MING.xls', rhoV3, 'MING', 'M17')

rhoV4
xlswrite('MING.xls', rhoV4, 'MING', 'Q17')

PV
xlswrite('MING.xls', PV, 'MING', 'AA17')

WP2
xlswrite('MING.xls', WP2, 'MING', 'S17')

Cd2
xlswrite('MING.xls', Cd2, 'MING', 'T17')

我敢打赌,xlswrite 运行良好,问题是其中rhoV4的元素比你想象的要少。所以修复rhoV4,你就完成了。

如果我错了,请返回该测试的结果,修改您的问题,我们都可以尝试弄清楚。

于 2012-08-22T14:42:43.503 回答