Effacer les filtres
Effacer les filtres

"Invalid handle." Error while using "Plot3".

3 vues (au cours des 30 derniers jours)
Abhay Aradhya
Abhay Aradhya le 9 Juin 2017
ax = axes('Parent',customUserInterface,'Position',[.1 .5 .375 .4]);
hold on
for m=1:numOfAP
plot3(ax,Data(m).traj(:,1),Data(m).traj(:,2),Data(m).traj(:,3),'g','LineWidth',2)
hold on
grid on
end
hold on
The Error points to the line with "Plot3". What am I going wrong with? Thanks in advance.
  5 commentaires
Abhay Aradhya
Abhay Aradhya le 9 Juin 2017
@walterRoberson
I checked the code once again but I do not have a "clear all" or "close all" anywhere in the code. I am putting down the code for your ref. Please suggest some work around. Thanks in advance.
customUserInterface = figure('Name','Solution selector window');
ax = axes('Parent',customUserInterface,'Position',[.1 .5 .375 .4]);
hold on
% to plot all the crossing points
subplot(ceil(sqrt(size(sectors_all,1))),ceil(sqrt(size(sectors_all,1))),p, 'Position',flightDataPlotPosition);
hold on;
if isempty(CP_xyz) == 0
plot3(ax,CP_xyz(:,1),CP_xyz(:,2),CP_xyz(:,3),'rh','LineWidth',2);
end
hold on
% To plot the trajectory taken by all the flights in the current hour
for m=1:numOfAP
plot3(ax,Data(m).traj(:,1),Data(m).traj(:,2),Data(m).traj(:,3),'g','LineWidth',2)
hold on
grid on
end
hold on
Abhay Aradhya
Abhay Aradhya le 9 Juin 2017
Modifié(e) : Abhay Aradhya le 9 Juin 2017
Found out that the "subplot" is the culprit. And without that it works fine. Any idea of a workaround?

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 9 Juin 2017
subplot() removes any axes that it overlaps. Your subplot() has exactly the same Position as your axes() call, so the subplot axes is going to overlap the explicit axes() created, which will cause the specific axes to be deleted.

Plus de réponses (1)

KSSV
KSSV le 9 Juin 2017
You should proceed like this.
h = plot3(rand(1,2),rand(1,2),rand(1,2),'g','LineWidth',2) ;
grid on
for m=1:100
set(h,'XData',rand(1,2),'YData',rand(1,2),'ZData',rand(1,2)) ;
end
  2 commentaires
Abhay Aradhya
Abhay Aradhya le 9 Juin 2017
Modifié(e) : Abhay Aradhya le 9 Juin 2017
customUserInterface = figure('Name','Solution selector window');
ax = axes('Parent',customUserInterface,'Position',[.1 .5 .375 .4]);
hold on
subplot(ceil(sqrt(size(sectors_all,1))),ceil(sqrt(size(sectors_all,1))),p, 'Position',[.1 .5 .375 .4]);
hold on;
h = plot3(ax,rand(1,2),rand(1,2),rand(1,2),'g','LineWidth',2) ;
grid on
for m=1:numOfAP
set(h,'XData',Data(m).traj(:,1),'YData',Data(m).traj(:,2),'ZData',Data(m).traj(:,3))
end
hold on
Tried the above approach to no avail the same error exists...!!!
It shows error at "plot3" again. Without the "ax" it seems to be working fine though, but I do need the referencing in my case as I am trying to plot 2 3D graphs on the same GUI. Please suggest any other solution. Thanks in advance
Abhay Aradhya
Abhay Aradhya le 9 Juin 2017
Modifié(e) : Abhay Aradhya le 9 Juin 2017
Found out that the "subplot" is the culprit. And without that it works fine. Any idea of a workaround?

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by