フィルターのクリア

I want to store two worksheets together in excel sheet from matlab.

2 ビュー (過去 30 日間)
ria
ria 2012 年 11 月 21 日
please help as I am only able to store only one worksheet at a time.

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 21 日
a=rand(5)
b=rand(5)
xlswrite('filename.xls',a,'sh1')
xlswrite('filename.xls',b,'sh2')
  4 件のコメント
ria
ria 2012 年 11 月 26 日
I WANT TO IMPORT THE ANSWER DIRECTLY FROM MATLAB INTO EXCEL .AND IN EXCEL ALSO I WANT TO STORE THE 191 VARIABLES (THEY ARE DIGITS,VALUES IN FIMTO FARADS,NANO HENRY ETC.) IN THE SAME SHEET BUT IN DIFFERENT COLUMN.THANX IN ADVANCE .
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 26 日
編集済み: Azzi Abdelmalek 2012 年 11 月 26 日
You din'nt mention the sizes of your variables (number of lines and column of each variable). If your variables have the same number of lines you can concatenate them for example:
var1=rand(10,2);
var3=rand(10,4);
var3=rand(10,5;
data=[var1 var2 var3]
xlswrite('filename.xls',data)
If not, tell us what kind of data are you using?

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

カテゴリ

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