Hi,
I have a variable flights_2011 and when I run the command whos it says it is a double array of size 1x35040 however the size command gives it as 1x12. I am also having trouble writing to xls which I imagine is related. Any ideas?
whos flights_2011 size flights_2011
joining_point_2011=reshape(median_jp_per_hour_2011,1,[]);
flights_2013=reshape(flights_prpdph_2013,1,[]);
joining_point_2013=reshape(median_jp_per_hour_2013,1,[]);
Name Size Bytes Class Attributes
flights_2011 1x35040 280320 double
ans =
1 12

 採用された回答

Iain
Iain 2015 年 1 月 13 日
編集済み: Iain 2015 年 1 月 13 日

0 投票

Size is working properly. It is telling you that there are TWELVE characters in the string 'flights_2011'.
size(flights_2011) will return [1 35040]
35040 is the number of columns. Excel has 16384 IIRC, and it therefore won't accept 35040 columns of data.
If you simply transpose flights_2011, it'll fill 35040 of excel 95's 65536 rows

1 件のコメント

jnaumann
jnaumann 2015 年 1 月 13 日
Ah - of course! Thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeData Import from MATLAB についてさらに検索

タグ

質問済み:

2015 年 1 月 13 日

コメント済み:

2015 年 1 月 13 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by