how to create shape on xy surface?

조회 수: 2 (최근 30일)
Asliddin Komilov
Asliddin Komilov 2023년 11월 14일
댓글: Asliddin Komilov 2023년 11월 20일
I need to calculate the area of shapes (parallelograms) that lay on one another. Their width is equal to 2. One of the angles (H) and the 'length' are variables (attached). So at the first I have created the list of the tasks:
  1. create the shape for the each case
  2. lay the shapes one on another
  3. and calculate the created shape's area
I have no idea how to do it, but looking into different options.
You are welcome to help with any of 3 tasks or with all of them.
I came accross with this
but I am still far away from understanding how to handle my task.
If it is simple for you, code it please, otherwise any hints and links to similar questions will be very helpful.
Thanks in advance.
  댓글 수: 2
Les Beckham
Les Beckham 2023년 11월 14일
편집: Les Beckham 2023년 11월 14일
Can you explain (preferably with a sketch) what you mean by "angles" and "length"?
Also, more than half of your length values are zero (see below).
S = load('variable.mat');
plot(S.H, '.')
hold on
grid on
plot(S.length(S.length ~= 0), '.')
Asliddin Komilov
Asliddin Komilov 2023년 11월 17일
편집: Asliddin Komilov 2023년 11월 17일
Hi, thanks for the reply
sorry for the inconvinience, this will sort the data:
angle=angle(length>0);
length=length(length>0);
so, the coordinates of the baseline (width at the bottom) stays the same.
thanks in advance

댓글을 달려면 로그인하십시오.

채택된 답변

Chunru
Chunru 2023년 11월 17일
편집: Chunru 2023년 11월 20일
websave("variable.mat", "https://www.mathworks.com/matlabcentral/answers/uploaded_files/1538662/variable.mat");
S = load('variable.mat');
% idx = S.H ~= 0 & S.length ~=0;
idx = S.length ~=0;
% Do computations only on the nonzero length and angle
S.H = 90 + S.H(idx)'; % check your definition of angle
S.length = S.length(idx)';
[S.H S.length]
ans = 108×2
23.1578 12.4611 24.4078 6.2578 25.6578 4.1901 26.9078 3.1563 28.1578 2.5361 29.4078 2.1227 30.6578 1.8275 31.9078 1.6062 33.1578 1.4341 34.4078 1.2966
min(abs(S.H)), max(abs(S.H))
ans = single 23.1578
ans = single 156.9078
whos
Name Size Bytes Class Attributes S 1x1 1200 struct ans 1x1 4 single cmdout 1x33 66 char idx 1x289 289 logical
% create the shape for the each case
n = length(S.H)
n = 108
w = 2;
S.X = [zeros(n,1) 2+zeros(n,1) S.length.*cosd(S.H)+2 S.length.*cosd(S.H)];
S.Y = [zeros(n,1) zeros(n,1) S.length.*sind(S.H) S.length.*sind(S.H)];
% lay the shapes one on another
figure
plot(S.X(:, [1:end 1])', S.Y(:, [1:end 1])') % plot all shapes
% plot shapes evry other 10
figure
plot(S.X(1:10:end, [1:end 1])', S.Y(1:10:end, [1:end 1])')
axis([-2 4 0 2])
% and calculate the created shape's area
S.A = abs(S.length.*w.*sind(S.H));
figure;
plot(S.A);
xlabel("Shape Index"); ylabel("Area")
  댓글 수: 7
Chunru
Chunru 2023년 11월 20일
You have 108 shapes with length>0. The shape index (i from 1 to 108) is the reference to the i-th shape you have.
You can sum all the area by: sum(S.A)
Asliddin Komilov
Asliddin Komilov 2023년 11월 20일
thanks

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by