Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

graphic with MatLab R2014b

1 visualizzazione (ultimi 30 giorni)
Roberto Pace
Roberto Pace il 21 Ott 2014
Chiuso: MATLAB Answer Bot il 20 Ago 2021
I get the following error message when I run a script that was given to me on my data and may well have been written in an earlier version - I am working 2014b.
This is the error:
Undefined function 'plus' for input arguments of type 'matlab.ui.Figure'.
Error in PCANMRmodppm_step5varimaxver6 (line 460) figure(h+1);
Tks rp

Risposte (1)

Mike Garrity
Mike Garrity il 21 Ott 2014
I'm guessing that h is the handle that was returned when you first called figure. Those used to be doubles, but now they're "real handles". There are a bunch of details here , but the short version for your case is that to get the next figure, you need to add one to the figure's Number property, not h itself. Something like this:
figure(h.Number + 1)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by