how to rectify this
Ältere Kommentare anzeigen
Dear sir
plot command not functioning for the simple cide
clc
clear all
t=0:0.1:2;
plot(t,sin(t))
showing errors as
Unrecognized function or variable
'currentFigure'.
Error in matlab.graphics.internal.newplotwrapper
(line 14)
if isempty(currentFigure)
Error in Untitled3 (line 4)
plot(t,sin(t))
pls suggest
6 Kommentare
What version you are using?
clc
clear all
t=0:0.1:2;
figure(1)
plot(t,sin(t))
sudhir sa
am 5 Mai 2022
KSSV
am 5 Mai 2022
The code which you gave should not take much time. Is the attched code,you gave plotting?
sudhir sa
am 5 Mai 2022
KSSV
am 5 Mai 2022
Then you should show us the code, which you gives you error.
sudhir sa
am 5 Mai 2022
Antworten (1)
Animesh Gupta
am 19 Mai 2022
Hello,
It is my understanding that plot function is not working in your case, and you are receiving the mentioned error.
clc
clear all
figure;
t=0:0.1:2;
g = groot;
fig = get(groot, 'CurrentFigure');
if ~isempty(fig) % true if there are no open graphics objects, false otherwise
% code to plot
plot(t,sin(t));
end
You can also refer the following link for more details -
I hope it helps.
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
