Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
How can I rotate a body inside mesh?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ganesh kumar Badri narayan
am 30 Mär. 2018
Geschlossen: MATLAB Answer Bot
am 20 Aug. 2021
Hi all, I have the following case where I am interested to rotate a particular section(See attached image for detailed view) in a mesh either clockwise or anticlockwise direction. I want it to rotate in a cell by cell manner. Thank you all for your time.
Please view below code:
clear all
clc
X=linspace(0,1,200);
Y=linspace(0,1,200);
u=zeros(1,200,200);
u(:,95:100,70:150)=NaN;
surf(X,Y,squeeze(u));
grid off
view(90,90);
axis square
0 Kommentare
Antworten (0)
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!