Matlab These assignments should be done in Matlab and published as 3 pdf files . I tried doing the first assignment but I did not code it the right way but most of it should be correct. This is how I...

1 answer below »
DUMMY


Matlab These assignments should be done in Matlab and published as 3 pdf files . I tried doing the first assignment but I did not code it the right way but most of it should be correct. This is how I coded assignment 1 but the graph won't show
Answered 39 days AfterAug 25, 2021

Answer To: Matlab These assignments should be done in Matlab and published as 3 pdf files . I tried doing the...

Saiyan answered on Oct 04 2021
133 Votes
Assignment 1
Explanation:
-Point A,B,C are given from origin
-To calculate AB, AC and BC vectors
the following formulation is used
OC=7i+4j , OA=13i+2j , OB=5i+17j (The given coordinates in vector form)
- AB=AO +OB
AC=AO +OC
BC=BA +AC
-To plot the vector quiver command is used
Code:
clear all
close all
clc
%To calculate AC vector components
m=7;
d=4;
%To calculate x and y components of AC vector
ACx=-13+m;
ACy=-2+d;
%To calculate x and y components of BC vector
BCx=8+ACx;
BCy=-15+ACy;
%To...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here