Answered step by step
Verified Expert Solution
Link Copied!

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);

image text in transcribed

\% 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

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions