Um die Funktion zu verstehen will ich einen Kreis(Flaeche) in einem 3d Raum auf dem Nullpunkt liegend rotieren (x und y achse) und anschl. verschieben. Mit der Rotation habe ich so meine Probleme.
%vector b (orthogonal to a)
M(1,3,1) = 0; %X
M(2,3,1) = 4; %Y
M(3,3,1) = 0; %Z
%plotte a und b
abc = [2,1,3];
mx = squeeze(M(1,abc,1));
my = squeeze(M(2,abc,1));
mz = squeeze(M(3,abc,1));
plot3(mx,my,mz);
hold on
%plotte Kreis im Grundzustand auf dem Nullpunkt
circle([M(1,1,1),M(2,1,1),M(3,1,1)],4,1000,':');
hold on;
%plotte Mittelpunkt
plot3(M(1,1,1),M(2,1,1),M(3,1,1),'-ok','MarkerSize',10,'MarkerEdgeColor','k','MarkerFaceColor','k');
hold on;
M = makehgtform('xrotate',t2); %returns a transform that rotates around the x-axis by t radians
M = makehgtform('yrotate',t2); %returns a transform that rotates around the y-axis by t radians
%plotte neuen Kreis
circle([M(1,1,1),M(2,1,1),M(3,1,1)],4,1000,'--');
hold on;
grid;
hold on;
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.