How to solve "Line cannot be a child of Figure." error?
Show older comments
So, I have a problem trying to plot 2 points in a 3D graph. I'm using the following code:
fig_UPS = figure;
hold on
plot3(fig_UPS, handles.VolDensPot_UPS, handles.PesoDensPot_UPS, handles.Rend_UPS, 'Color', 'r', 'Marker', '*','DisplayName', handles.Nome_UPS, 'LineStyle', 'none');
hold on
plot3(fig_UPS, handles.VolDensPot_Wendell, handles.PesoDensPot_Wendell, handles.Rend_Wendell, 'Color', 'b', 'Marker', 'o','DisplayName', handles.Nome_Wendell, 'LineStyle', 'none');
legend(fig_UPS);
xlabel(fig_UPS, 'Densidade de Potência Volumétrica [kW/dm³]');
ylabel(fig_UPS, 'Densidade de Potência Mássica [kW/kg]');
zlabel(fig_UPS, 'Rendimento')
But I've being getting the "Line cannot be a child of Figure." error.
How can I solve this?
Thanks in advance
Accepted Answer
More Answers (0)
Categories
Find more on Graphics Object Properties in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!