Answered step by step
Verified Expert Solution
Question
1 Approved Answer
% 6: What's happening on line 90? mytri = DelaunayTri(xobs,yobs); XY=mytri.X; [NXY, i] = size(XY); TRI=mytri.Triangulation; [NTRI, i] = size(TRI); for i = [1:NTRI] v1=TRI(i,1);
\% 6: What's happening on line 90? mytri = DelaunayTri(xobs,yobs); XY=mytri.X; [NXY, i] = size(XY); TRI=mytri.Triangulation; [NTRI, i] = size(TRI); for i = [1:NTRI] v1=TRI(i,1); v2=TRI(i,2); v3=TRI(i,3); plot ([XY(v1,2),XY(v2,2)],[XY(v1,1),XY(v2,1)], 'k-', 'LineWidth', 2); plot ([XY(v2,2),XY(v3,2)],[XY(v2,1),XY(v3,1)], 'k-', 'LineWidth', 2); plot ([XY(v3,2),XY(v1,2)],[XY(v3,1),XY(v1,1)],k, 'LineWidth', 2); end
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started