Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

MATLAB This program is meant to help you get practice with writing programs to perform more complex numerical calculations, and specifically to give you practice

MATLAB

This program is meant to help you get practice with writing programs to perform more complex numerical calculations, and specifically to give you practice with vector calculations.

Write a program that calculates the angle between two points, as seen by an observer.

Your program should read in:

-The 3D position of an observer

-The 3D position of the first observed point

-The 3D position of the second observed point

Then, it should calculate and output, in degrees, the angle between the points from the viewers perspective. The steps for doing this are:

-Read in the points from the user. Assume the points will be some (x, y, z) coordinates.

-Calculate the two vectors from the observer to each of the observed points

-Normalize the vectors

-Calculate the dot product between the vectors

-Use that to calculate the angle between the two observed points. Note that the dot product of two normalized vectors gives the cosine of the angle between those vectors.

-Outputs the answer in degrees

Before beginning coding, you should stop and think briefly about the variables you will need for your program.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Databases And Information Systems 1 International Baltic Conference Dbandis 2020 Tallinn Estonia June 19 2020 Proceedings

Authors: Tarmo Robal ,Hele-Mai Haav ,Jaan Penjam ,Raimundas Matulevicius

1st Edition

303057671X, 978-3030576714

More Books

Students also viewed these Databases questions

Question

Write short notes on Interviews.

Answered: 1 week ago

Question

Define induction and what are its objectives ?

Answered: 1 week ago

Question

Discuss the techniques of job analysis.

Answered: 1 week ago