I am trying to display a figure with color so I am entering:
function class1()
figure('name', 'Example',...
'numbertitle', 'off',...
'menubar', 'none'...
'color',[1 1 1])
end
But I get an error:
Error: File: class1.m Line: 6 Column: 5
Unexpected MATLAB expression.
How do I fix it so I can set colour to the figure? Assistance would be greatly appreciated. MATLAB version: R2012a

 Akzeptierte Antwort

Image Analyst
Image Analyst am 14 Dez. 2014

0 Stimmen

You forgot a command after 'none'. Try this:
hFigure = figure('name', 'Example',...
'numbertitle', 'off',...
'menubar', 'none',... % Here's where you were missing the comma
'color', [.1 .8 .5])

1 Kommentar

Muaaman
Muaaman am 14 Dez. 2014
Thank you very much Image Analyst. The error is now corrected.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 14 Dez. 2014

Kommentiert:

am 14 Dez. 2014

Community Treasure Hunt

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

Start Hunting!

Translated by