Thread Subject: Does anyone else wish Matlab could handle Open Documents?

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Darren

Date: 12 Jul, 2007 15:12:23

Message: 1 of 16

I personally see this as a severe hindrance to Matlab. It works great on Linux and MacOS but can only read and write Excel spreadsheets, and that rarely works properly without ActiveX.

Has anyone developed code to handle (read and write) Open Document Spreadsheets? If not, Mathworks needs to get off their butts and get with the times.

Let me know what you guys think.

Darren




Subject: Does anyone else wish Matlab could handle Open Documents?

From: Yair Altman

Date: 12 Jul, 2007 15:30:20

Message: 2 of 16

While not exactly Open Docs, you can use OfficeDoc (available on the File Exchange) to read, write & format other types of Microsoft Office documents: Word (DOC) and PowerPoint (PPT), in addition to Excel (XLS). It requires ActiveX, though.

If there's enough public demand I guess I could expand it to Open Office.

Yair Altman
http://www.ymasoftware.com

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Steven Lord

Date: 12 Jul, 2007 13:15:08

Message: 3 of 16


"Darren " <darrenb@NOSPAM.udel.edu> wrote in message
news:f75gcn$6h$1@fred.mathworks.com...
>I personally see this as a severe hindrance to Matlab. It works great on
>Linux and MacOS but can only read and write Excel spreadsheets, and that
>rarely works properly without ActiveX.
>
> Has anyone developed code to handle (read and write) Open Document
> Spreadsheets? If not, Mathworks needs to get off their butts and get with
> the times.
>
> Let me know what you guys think.
>
> Darren

I've noted your interest in this in our enhancement database. In the
future, though, if you want to request an enhancement you should also send a
message to technical support in addition to posting to CSSM. The support
group specifically tracks how many people ask for each enhancement that is
requested by a user that contacts support and shares that information with
development. In addition, it may be that the enhancement you request is
already in the product, and in that case support can tell you that and tell
you how to access your requested functionality.

--
Steve Lord
slord@mathworks.com


Subject: Does anyone else wish Matlab could handle Open Documents?

From: Ondrej

Date: 9 Oct, 2007 13:48:35

Message: 4 of 16

I would find it very helpful.

Ondrej

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Joachim

Date: 9 Oct, 2007 19:54:14

Message: 5 of 16

Another vote for ODF support

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Guenter Puhr

Date: 10 Oct, 2007 06:32:11

Message: 6 of 16

I would find it very helpful too.
Especially when using the Matlab-Report Generator.

Günter

Subject: Does anyone else wish Matlab could handle Open Documents?

From: _tmh_

Date: 15 Oct, 2007 18:21:27

Message: 7 of 16

It would be very helpful to have support for open document
formats...+1

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Ken

Date: 31 Oct, 2007 08:30:06

Message: 8 of 16

I'll be a happy user too...

Thanks in advance,
Ken

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Diederick Niehorster

Date: 31 Oct, 2007 10:50:54

Message: 9 of 16

"Darren " <darrenb@NOSPAM.udel.edu> wrote in message
<f75gcn$6h$1@fred.mathworks.com>...
> I personally see this as a severe hindrance to Matlab.
It works great on Linux and MacOS but can only read and
write Excel spreadsheets, and that rarely works properly
without ActiveX.
>
> Has anyone developed code to handle (read and write) Open
Document Spreadsheets? If not, Mathworks needs to get off
their butts and get with the times.
>
> Let me know what you guys think.
>
> Darren
>
Hey Darren,

On that excel note, you can just write tab-delimited data
in a plain text file and give it the extention .xls. Works
great ;)

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Bob Gilmore

Date: 31 Oct, 2007 14:48:54

Message: 10 of 16

"Diederick Niehorster" <none@none.com> wrote in message
news:fg9mme$so6$1@fred.mathworks.com...
> "Darren " <darrenb@NOSPAM.udel.edu> wrote in message
> <f75gcn$6h$1@fred.mathworks.com>...
>> I personally see this as a severe hindrance to Matlab.
> It works great on Linux and MacOS but can only read and
> write Excel spreadsheets, and that rarely works properly
> without ActiveX.
>>
>> Has anyone developed code to handle (read and write) Open
> Document Spreadsheets? If not, Mathworks needs to get off
> their butts and get with the times.
>>
>> Let me know what you guys think.
>>
>> Darren
>>
> Hey Darren,
>
> On that excel note, you can just write tab-delimited data
> in a plain text file and give it the extention .xls. Works
> great ;)

If you move to writing tab-delimited data, there's no reason to manipulate
the extension, either.

You can use DLMREAD or IMPORTDATA to read the file easily, or TEXTSCAN or
TEXTREAD to have finer control over the process.
--
Bob Gilmore, The MathWorks, Inc.


Subject: Does anyone else wish Matlab could handle Open Documents?

From: Scott Dobbins

Date: 31 Oct, 2007 15:00:57

Message: 11 of 16

"Darren " <darrenb@NOSPAM.udel.edu> wrote in message
<f75gcn$6h$1@fred.mathworks.com>...
> I personally see this as a severe hindrance to Matlab. It
works great on Linux and MacOS but can only read and write
Excel spreadsheets, and that rarely works properly without
ActiveX.
>
> Has anyone developed code to handle (read and write) Open
Document Spreadsheets? If not, Mathworks needs to get off
their butts and get with the times.
>
> Let me know what you guys think.
>
> Darren
>
>
>
>
Darren:

I wholeheartedly agree. My company paid mega bucks for
software from MathSoft. Why shouldn't we have software
that, if not groundbreaking, is at least with the times?

Scott

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Darren

Date: 6 Nov, 2007 15:16:43

Message: 12 of 16

Thanks for the support guys!

Some people have suggested using delimited files as a
replacement for Excel. There is no way a delimited file can
even be remotely considered a suitable replacement. My
problem is that I don't merely want to write data to a
spreadsheet once and be done with it. I want to
consistently manipulate the data in a spreadsheet and have
the spreadsheet program (preferable Calc) perform all the
pre-set calculations when Matlab is done with the file.
This works well with Excel (only in Windows, of course).
This would be a great thing to implement in Matlab, and
especially easy since OpenDocument is just that, open. If I
was half a programmer, I would have done this already. Any
one up to the challenge?

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Nicolas BERCHER

Date: 28 Nov, 2007 08:47:18

Message: 13 of 16

"Darren " <darrenb@NOSPAM.udel.edu> wrote in message
<f75gcn$6h$1@fred.mathworks.com>...
> I personally see this as a severe hindrance to Matlab. It
works great on Linux and MacOS but can only read and write
Excel spreadsheets, and that rarely works properly without
ActiveX.
>
> Has anyone developed code to handle (read and write) Open
Document Spreadsheets? If not, Mathworks needs to get off
their butts and get with the times.
>
> Let me know what you guys think.
>
> Darren

Hi Darren,

I'm interested in developing the same functionality as you
proposed. It could be a great benefit for everybody to be
able to load OpenDocument spreadsheet format from Matlab.

I work under Linux "24/7" and really wish to use
OpenOffice.org calc ".ods" files in Matlab for my work.

My first goal would be to develop a M-file (or a Mex
library) that can read the first sheet of an ods file. This
sheet would, in a first approach, contain only string and
numerical values (no formulas).

For the moment, the way I use xls file in my work just looks
like what can be achieved using a data base (reading &
querying the data) + the benefits of the Excel GUI that
allow quick data changes.
For this reason I'm not sure to invest many time developing
such a code, while, for example, mySQL clients exists for
Matlab (and it can be a great solution for me).
I'm just looking for co-developers who would like to develop
a simple ods file reading tool with me !

Just answer and we'll see !

Subject: Does anyone else wish Matlab could handle Open Documents?

From: qooroo

Date: 14 Jul, 2009 08:43:01

Message: 14 of 16

"Darren " <darrenb@NOSPAM.udel.edu> wrote in message <f75gcn$6h$1@fred.mathworks.com>...
> I personally see this as a severe hindrance to Matlab. It works great on Linux and MacOS but can only read and write Excel spreadsheets, and that rarely works properly without ActiveX.
>
> Has anyone developed code to handle (read and write) Open Document Spreadsheets? If not, Mathworks needs to get off their butts and get with the times.
>
> Let me know what you guys think.
>
> Darren
>
>
>
>

Another supporter.

Does anyone know if this has progressed?

-qooroo

Subject: Does anyone else wish Matlab could handle Open Documents?

From: qooroo

Date: 14 Jul, 2009 08:47:01

Message: 15 of 16

"qooroo " <qooroo@gmail.com> wrote in message <h3hgel$64$1@fred.mathworks.com>...
> "Darren " <darrenb@NOSPAM.udel.edu> wrote in message <f75gcn$6h$1@fred.mathworks.com>...
> > I personally see this as a severe hindrance to Matlab. It works great on Linux and MacOS but can only read and write Excel spreadsheets, and that rarely works properly without ActiveX.
> >
> > Has anyone developed code to handle (read and write) Open Document Spreadsheets? If not, Mathworks needs to get off their butts and get with the times.
> >
> > Let me know what you guys think.
> >
> > Darren
> >
> >
> >
> >
>
> Another supporter.
>
> Does anyone know if this has progressed?
>
> -qooroo

I'm especially interested in an OpenOffice equivalent of xlswrite. Anyone know of anything which will do the job?

-qooroo

Subject: Does anyone else wish Matlab could handle Open Documents?

From: Jacques Vernin

Date: 5 Nov, 2009 08:23:03

Message: 16 of 16

 
"Darren " <darrenb@NOSPAM.udel.edu> wrote in message <f75gcn$6h$1@fred.mathworks.com>...
> I personally see this as a severe hindrance to Matlab. It works great on Linux and MacOS but can only read and write Excel spreadsheets, and that rarely works properly without ActiveX.
>
> Has anyone developed code to handle (read and write) Open Document Spreadsheets? If not, Mathworks needs to get off their butts and get with the times.
>
> Let me know what you guys think.
>
> Darren
 ---------------------------------
Another supporter.

Tags for this Thread

Everyone's Tags:

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

Tag Activity for This Thread
Tag Applied By Date/Time
xlsread Jacques Vernin 5 Nov, 2009 03:24:08
excel Jacques Vernin 5 Nov, 2009 03:24:08
openoffice Jacques Vernin 5 Nov, 2009 03:24:08
open office Darren 12 Jul, 2007 11:15:23
xlswrite Darren 12 Jul, 2007 11:15:23
calc Darren 12 Jul, 2007 11:15:23
xlsread Darren 12 Jul, 2007 11:15:23
ods Darren 12 Jul, 2007 11:15:23
open document Darren 12 Jul, 2007 11:15:23
rssFeed for this Thread
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com