help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Help for Export to Excel in octave


From: Andreas Weber
Subject: Re: Help for Export to Excel in octave
Date: Sat, 4 Apr 2020 21:32:04 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.6.0

Am 04.04.20 um 20:30 schrieb Hamed Khatibi:
> ...
> writecell({'R'},'Output.xlsx','sheet',1,'Range','A1');
> writematrix(R,'Output.xlsx','sheet',1,'Range','A2');

You can use the octave-forge io package:
https://octave.sourceforge.io/io/overview.html

the OCT interface should be sufficient.
x = xlsread ('file.xlsx', 1, [], 'OCT');
x = oct2xls (...., x, "sheet");
...
xlsclose (x)

-- Andy



reply via email to

[Prev in Thread] Current Thread [Next in Thread]