MATLAB: An Introduction with Applications
MATLAB: An Introduction with Applications
6th Edition
ISBN: 9781119256830
Author: Amos Gilat
Publisher: John Wiley & Sons Inc
bartleby

Concept explainers

bartleby

Videos

Question
Book Icon
Chapter 2, Problem 1P
To determine

To create:

A variable a that is a row vector with the following elements: 9,1,32,7/4,0,2.25×8.5,0.8 and sin(π/8).

Expert Solution & Answer
Check Mark

Answer to Problem 1P

Solution:

The created row vector variable a is a=[9,1,9,1.75,0,19.125,0.8,0.3827].

Explanation of Solution

The given row vector contains following elements: 9,1,32,7/4,0,2.25×8.5,0.8 and sin(π/8).

Simplify the given row vector.

    9=91=132=974=1.75

And,

    0=02.25×8.5=19.1250.8=0.8sin(π/8)=0.3827

Hence, the created row vector variable a is a=[9,1,9,1.75,0,19.125,0.8,0.3827].

Write the MATLAB script that create a variable a that is a row vector with the following elements: 9,1,32,7/4,0,2.25×8.5,0.8 and sin(π/8).

MATLAB Code:

a=[9 1 3^2 7/4 0 2.25*8.5 0.8 sin(pi/8)]

% Calculate the value of the equation

Save the MATLAB script with name, chapter2_56830_2_1P.m in the current folder. Execute the script by typing the script name at the command window to get the answer for a row vector with the following elements: 9,1,32,7/4,0,2.25×8.5,0.8 and sin(π/8).

Result:

MATLAB: An Introduction with Applications, Chapter 2, Problem 1P

Conclusion:

Therefore, the created row vector variable a is a=[9,1,9,1.75,0,19.125,0.8,0.3827].

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
4. (5 pts) Conduct a chi-square contingency test (test of independence) to assess whether there is an association between the behavior of the elderly person (did not stop to talk, did stop to talk) and their likelihood of falling. Below, please state your null and alternative hypotheses, calculate your expected values and write them in the table, compute the test statistic, test the null by comparing your test statistic to the critical value in Table A (p. 713-714) of your textbook and/or estimating the P-value, and provide your conclusions in written form. Make sure to show your work. Did not stop walking to talk Stopped walking to talk Suffered a fall 12 11 Totals 23 Did not suffer a fall | 2 Totals 35 37 14 46 60 T
Question 2 Parts manufactured by an injection molding process are subjected to a compressive strength test. Twenty samples of five parts each are collected, and the compressive strengths (in psi) are shown in Table 2. Table 2: Strength Data for Question 2 Sample Number x1 x2 23 x4 x5 R 1 83.0 2 88.6 78.3 78.8 3 85.7 75.8 84.3 81.2 78.7 75.7 77.0 71.0 84.2 81.0 79.1 7.3 80.2 17.6 75.2 80.4 10.4 4 80.8 74.4 82.5 74.1 75.7 77.5 8.4 5 83.4 78.4 82.6 78.2 78.9 80.3 5.2 File Preview 6 75.3 79.9 87.3 89.7 81.8 82.8 14.5 7 74.5 78.0 80.8 73.4 79.7 77.3 7.4 8 79.2 84.4 81.5 86.0 74.5 81.1 11.4 9 80.5 86.2 76.2 64.1 80.2 81.4 9.9 10 75.7 75.2 71.1 82.1 74.3 75.7 10.9 11 80.0 81.5 78.4 73.8 78.1 78.4 7.7 12 80.6 81.8 79.3 73.8 81.7 79.4 8.0 13 82.7 81.3 79.1 82.0 79.5 80.9 3.6 14 79.2 74.9 78.6 77.7 75.3 77.1 4.3 15 85.5 82.1 82.8 73.4 71.7 79.1 13.8 16 78.8 79.6 80.2 79.1 80.8 79.7 2.0 17 82.1 78.2 18 84.5 76.9 75.5 83.5 81.2 19 79.0 77.8 20 84.5 73.1 78.2 82.1 79.2 81.1 7.6 81.2 84.4 81.6 80.8…
Name: Lab Time: Quiz 7 & 8 (Take Home) - due Wednesday, Feb. 26 Contingency Analysis (Ch. 9) In lab 5, part 3, you will create a mosaic plot and conducted a chi-square contingency test to evaluate whether elderly patients who did not stop walking to talk (vs. those who did stop) were more likely to suffer a fall in the next six months. I have tabulated the data below. Answer the questions below. Please show your calculations on this or a separate sheet. Did not stop walking to talk Stopped walking to talk Totals Suffered a fall Did not suffer a fall Totals 12 11 23 2 35 37 14 14 46 60 Quiz 7: 1. (2 pts) Compute the odds of falling for each group. Compute the odds ratio for those who did not stop walking vs. those who did stop walking. Interpret your result verbally.

Chapter 2 Solutions

MATLAB: An Introduction with Applications

Ch. 2 - Using the colon symbol, create a row vector...Ch. 2 - Using the linspace command, create a row vector...Ch. 2 - Using the colon symbol, create a variable named...Ch. 2 - Use a single command to create a row vector...Ch. 2 - Use a single command to create a row vector...Ch. 2 - Use a single command to create a row vector...Ch. 2 - Create two row vectors v=41:-3:29 and w=17:4:37....Ch. 2 - Create two column vectors T= [5:5:25]’ and S=...Ch. 2 - Create a row vectors A=4:3:13 and a column vector...Ch. 2 - Create a row vector vA=1: 3 : 34 that has 12...Ch. 2 - Create a row vector vC=2 :3 :38 that has 13...Ch. 2 - Create two row vectors vD=20 :4 :44 and vE=50 :3...Ch. 2 - Create a nine-element row vector vF=5 : 7: 61....Ch. 2 - Create the following matrix by assigning vectors...Ch. 2 - Create the following vector by using the linspace...Ch. 2 - Create the following matrix by typing one command....Ch. 2 - Create the following matrix by typing one command....Ch. 2 - Create the following matrix by typing one command....Ch. 2 - Create the following matrix by typing one command....Ch. 2 - Create the following matrix by typing one command....Ch. 2 - Create the following three row vectors: a=[58102]...Ch. 2 - Create the following three row vectors: a= [5 8 -1...Ch. 2 - Create the following to row vectors: d=[6-1 4 0 -2...Ch. 2 - Prob. 34PCh. 2 - Create the following vector: V=[5 0 -3 7 6 -1 2 8...Ch. 2 - Create the following vectors: u= [0 9 -5 6 3 -1 2]...Ch. 2 - Create the following matrix M: M= 1 7 13 19 25 3 9...Ch. 2 - Create the following matrix N: N= 0 3 6 9 12 15 18...Ch. 2 - Create the following matrix G: G= 0.1 0.2 0.3 0.4...Ch. 2 - Create the following matrix K: K= 0.25 0.5 0.75...Ch. 2 - The following matrix is defined in MATLAB: S= 1 2...Ch. 2 - The following matrix is defined in MATLAB: T= 2 4...Ch. 2 - By hand (pencil and paper) write what will be...Ch. 2 - Using the zeros, ones, and eye commands, create...Ch. 2 - Use the eye, ones, and zeros command to create the...
Knowledge Booster
Background pattern image
Statistics
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, statistics and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
MATLAB: An Introduction with Applications
Statistics
ISBN:9781119256830
Author:Amos Gilat
Publisher:John Wiley & Sons Inc
Text book image
Probability and Statistics for Engineering and th...
Statistics
ISBN:9781305251809
Author:Jay L. Devore
Publisher:Cengage Learning
Text book image
Statistics for The Behavioral Sciences (MindTap C...
Statistics
ISBN:9781305504912
Author:Frederick J Gravetter, Larry B. Wallnau
Publisher:Cengage Learning
Text book image
Elementary Statistics: Picturing the World (7th E...
Statistics
ISBN:9780134683416
Author:Ron Larson, Betsy Farber
Publisher:PEARSON
Text book image
The Basic Practice of Statistics
Statistics
ISBN:9781319042578
Author:David S. Moore, William I. Notz, Michael A. Fligner
Publisher:W. H. Freeman
Text book image
Introduction to the Practice of Statistics
Statistics
ISBN:9781319013387
Author:David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:W. H. Freeman
How to find the magnitude and direction of a given vector; Author: Brian McLogan;https://www.youtube.com/watch?v=4qE-ZrR_NxI;License: Standard YouTube License, CC-BY
Linear Algebra for Computer Scientists. 2. Magnitude of a Vector; Author: Computer Science;https://www.youtube.com/watch?v=ElnuSJyUdR4;License: Standard YouTube License, CC-BY