Please I Want To Solve These Two Paragraphs With A Correct Solution The Solution Is Through The Scilab Program And Th 1 (49.37 KiB) Viewed 32 times
Please I Want To Solve These Two Paragraphs With A Correct Solution The Solution Is Through The Scilab Program And Th 2 (18.81 KiB) Viewed 32 times
Please I Want To Solve These Two Paragraphs With A Correct Solution The Solution Is Through The Scilab Program And Th 3 (14.64 KiB) Viewed 32 times
Please I Want To Solve These Two Paragraphs With A Correct Solution The Solution Is Through The Scilab Program And Th 4 (11.01 KiB) Viewed 32 times
Please I Want To Solve These Two Paragraphs With A Correct Solution The Solution Is Through The Scilab Program And Th 5 (11.99 KiB) Viewed 32 times
Please I want to solve these two paragraphs with a correct solution - the solution is through the SCILAB program, and then I attach screenshots of the solution (I will give you an example of the solution I want) Use Scilab [Solve any 2 question] 1. Write a code to Create a vector of the even whole numbers between 1 and 200. 2. Write a code to draw a Parabola in Scilab where y = mx^8 + C The solution is with these pictures in SCILAB
Se 61.1 Console --> // Creating 4x4 matrix --> A - (0 6 2 0: 4 3 0 1: -2 6 2 0: 0-3 -2 6. 3. 0. 4. -2. 0. 2. 0. 2. -2. 0. 1. 0. 0. 6. -3. --> // part (a) calculating B as transpose of A --> B-A. B 0. 0. 6. 2. 0. 3. 0. 1. -2. 6. 2. 0. -2. 0 --> // part (b) performing coefficient wise multiplication of A and B > A.B ans 0. 24. 24. 9. 0. -4. 0. 4. 0. 0. -3. 0. 0. 0. --> // part (c) Finding inverse of matrix A
--> inv (A) ans 0.5 0.3333333 -0.5 -3. 0. -1.850D-18 0. 1. -0.5 -3.7010-18 0. 2. -5.551D-17 0.3333333 -1. --> // part (d) Finding sum of matrices A and B --> A+B ana 0. -2. 0. 10. 0. 0. 10. 6. 6. -2. 0. 6. 4. -2. 0. --> // part (e) Finding 3rd column of A --> A(:,3) ans 2. 0. -2.