Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Could someone write some code to extract details within a for loop?

조회 수: 1 (최근 30일)
Steve
Steve 2019년 11월 20일
마감: MATLAB Answer Bot 2021년 8월 20일
In my previous post, I was given some code that works great, but I need to extract some details that are mentioned within one of the for-loops, namely:
  1. arc lengths
  2. arc radii
  3. starting/ending points of arcs (triplet center points)
  4. thetas (w/ corresponding theta1, theta2 angles) for each arc.
Can anyone help me to extract and store these details (along with index/node numbers) within a single variable/file?
Thanks in advance for your help!
  댓글 수: 2
Catalytic
Catalytic 2019년 11월 20일
Mentioned in which for-loop?
Steve
Steve 2019년 11월 20일
Thanks for reaching out Catalytic. The for-loop is under: function plotcirc(obj)

답변 (1개)

Catalytic
Catalytic 2019년 11월 21일
편집: Catalytic 2019년 11월 21일
Something like this....
function stuff=getStuff(tgraph,arcNumber)
AP=tgraph.ArcPoints;
i=arcNumber;
C1=AP(:,1,i); C2=AP(:,4,i);
V1=AP(:,2,i); V2=AP(:,3,i);
L=norm(C2-C1);
U=(C2-C1)/L;
dV1=(V1-C1)/norm(V1-C1);
dV2=(V2-C2)/norm(V2-C2);
stuff.theta1=acosd(dot( dV1, U) );
stuff.theta2=acosd(dot( dV2, -U) );
stuff.theta=(theta1+theta2)/2;
stuff.arcradius=norm(C1-C2)/(2*sind(theta));
stuff.C1=C1;
stuff.C2=C2;
stuff.nodeNumber=findedge(tgraph.Cgraph,i);
end
  댓글 수: 7
Steve
Steve 2019년 11월 22일
Thank you Steven. I didn't even know about the MATLAB Onramp tutorial, but I will definitely check it out now that I know about it. Thanks again!
Steve
Steve 2019년 11월 23일
By the way Catalytic, thank you for your input. However, I could not get your code/function (shown above) to run, as it was generating errors.

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by