Filter löschen
Filter löschen

matlab compiler r2011a problem with both edit and figure/plot

2 Ansichten (letzte 30 Tage)
A Huang
A Huang am 30 Jul. 2011
I use "mcc -m test.m" for the following to build a standalone executable, but it ran into Java error during execution.
function []=test() edit(); figure(1); plot([1 2 3],[4 5 6]);
Any idea to make both edit and figure/plot work after compilation? I am using R2011a.

Antworten (2)

Walter Roberson
Walter Roberson am 30 Jul. 2011
You cannot compile calls to "edit". figure() and plot() should be okay though.
Please see here

A Huang
A Huang am 30 Jul. 2011
By copying edit.m to a local directory, I can compile edit (and execute successfully) without figure/plot. It just seemed that there's a Java conflict between edit and figure/plot during execution.
  3 Kommentare
A Huang
A Huang am 31 Jul. 2011
I just wanted to display the content of a file before plotting it. Is there a text viewer that can compile in Matlab?
Walter Roberson
Walter Roberson am 31 Jul. 2011
You can use a uicontrol of style edit, with 'enable' set to 'disable'. That will give you a text region with a vertical scroll bar but no edit facility.
If you need horizontal scrolling as well, there are MATLAB File Exchange contributions that provide horizontal and vertical scrolling for text.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Manage Products finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by