Matlab Program Develop a natural sine table with rows and columsn ranging as shown below, for a total of 121 data. Store the results in
Matlab Program
Develop a natural sine table with rows and columsn ranging as shown below, for a total of 121 data. Store the results in a variable named nsinet. Hints to simplify your work: The sine function for the angle 6 degrees and 24 minutes is obtained from row 6 and column 24 in the table below to be 0.1115. This should be the number in your nsinet array, not 1115. You don t need to include angles in the first column or top header row, that is nsinet includes 121 calculated numbers only inside the table. 00-0000 0017 0035 0052 0070 0087 0105 0122 0140 0157 0-0175 0192 0209 0227 0244 0262 0279 0297 0314 0332 0-0349 0368 0384 0401 0419 0438 0454 0471 0488 0506 0-0523 0541 0558 0576 0593 0610 0828 0645 0663 0880 0-0698 0715 0732 0750 0767 0785 0802 0819 0837 0854 0-0872 0889 0906 0924 0941 0958 0976 0993 1011 1028 1 2 3 4 06 12 18 24 30 38 42 48 54 0.0 0.1 0.2 0.3 0.40 0.50 0.8 0.7 0.8 0.9 6 7 0-1045 1063 1080 1097 1115 1132 1149 1167 1184 1201 0-1219 1236 1253 1271 1288 1305 1323 1340 1357 1374 0-1392 1409 1426 1444 1461 1478 1495 1513 1530 1547 90-1584 1582 1599 1618 1633 1650 1668 1685 1702 1719 10 0 1738 1754 1771 1788 1805 1822 1840 1857 1874 1891 1% initializing the variable 2 nsinet = zeros (); 3% setting the loop 4 for ii= 5 for jj= 6 7 8 end 9 end nsinet(ii, jj)=
Step by Step Solution
3.43 Rating (150 Votes )
There are 3 Steps involved in it
Step: 1
Answer MATLAB Code initializing the variable nsine...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