Example of how to save or read data to an Excel archive.

This function writes data inside an Excel archive. Is an example of usage of commands.
ダウンロード: 622
更新 2012/1/17

ライセンスの表示

% First we create some data.

t=linspace(0,10);
x=sin(t);
data=num2cell([t;x]');

% Now we have a cell with two rows, one % for t and another for x.
% We also have an Escel archive called % "myexcel.xls"
% We want to put those rows into the
% excel archive, in rows A and B.
% With headers "t" and "x(t)".

[name,path]=uigetfile('*.*');
workwith_excel([path,name],'Hoja1',[{'t'},{'x(t)'}],[1,1;1,2]); workwith_excel([path,name],'Hoja1',data,[2,1;11,2]);

引用

Héctor Corte (2024). Example of how to save or read data to an Excel archive. (https://www.mathworks.com/matlabcentral/fileexchange/34631-example-of-how-to-save-or-read-data-to-an-excel-archive), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2010a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersSpreadsheets についてさらに検索
謝辞

ヒントを得たファイル: xlswrite - legacy, xlsheets, dat2xls, xlschart, XLSWriteMex, xlswrite_mod, xlcolumn, xlswrite

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0