フィルターのクリア

Writing multiple arrays to the same excel sheet.

8 ビュー (過去 30 日間)
ref
ref 2011 年 10 月 25 日
Hello, as title says i want to write different arrays to the same excel sheet. The arrays I'm using are (both type n,1):
a(start:enda,2)
a(start:enda,3)
If i name a new array and try writing that one to the excel sheet with the commands shown below
b={a(start:enda,2);a(start:enda,3)}
xlswrite('error points.xlsx',b)
I get no results, plus the excel cells are blank with no data at all. How is this solved? In addition, how can I name these different arrays in the excel sheet?
Instead I'm using
xlswrite('error points.xlsx',a(start:enda,2))
xlswrite('error points.xlsx',a(start:enda,3))
opening two different sheets and merging them, which is a waste of time.

採用された回答

Fangjun Jiang
Fangjun Jiang 2011 年 10 月 26 日
All you need to change is:
b=[a(start:enda,2);a(start:enda,3)]
or put them in two columns
b=[a(start:enda,2),a(start:enda,3)]

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by