Coming up with a list of ideas or problems for a new product.
What is brainstorming?
A part of the population
What is sample size?
Algorithm
What is the process or set of rules to be followed in calculations or other problem-solving operations?
Matrix Laboratory
What does MATLAB stand for?
What are the basic steps of the engineering design process?
Need finding, problem statement, concept evaluation, concept selection, prototype, communication.
Identifying and researching a need.
What is the first step of the engineering design process?
The average number; found by adding all data points and dividing by the number of data points.
What is mean?
Integer
What is the variable data type used to store a whole number that does not contain a decimal?
clear
What command clears all variables in workspace browser?
Find the standard deviation of the following set of numbers: 10,15,19,35,27,44. Round your answer to the nearest tenth.
To find the standard deviation of a set of numbers, first find the mean (average) of the set of numbers:
10+15+19+35+27+446=25
Second, for each number in the set, subtract the mean and square the result:
(10−25)2+(15−25)2+(19−25)2+(35−25)2+(27−25)2+(44−25)2=826
Then add all of the squares together and find the mean (average) of the squares, like this:
8266=137.67
Finally, take the square root of the second mean:
137.7‾‾‾‾‾√=11.7.
An iterative process.
What is the engineering design process?
Standard deviation
What is the square root of the variance?
Flowchart
What is the diagrammatic representation of an algorithm?
pi
How to input the value of π (pi or 3.145...) in MATLAB?
Which command do you use to solve this function?
f=exp(x)/x + sqrt(x)
It is a restriction.
What is a constraint?
Mean, median, and mode.
What are fundamental mathematical concepts to understand when determining statistics? (OR What are measurements of central tendency?)
Floating point
What variable data type is used to represent noninteger fractional numbers?
For
What is the command that allows you to write a loop that needs to execute a specific number of times?
Given the 2xN array, x=[1 2 3 4 5; 1 2 3 4 5]. How do you create a 2-D line plot of the first row against second row?
plot(x(1,:), x(2,:))
Test and evaluate a prototype.
Which step of the engineering design process distinguishes an engineer from a technician?
68%
What is the population percentage within 1 standard deviation of the mean?
Debugging
What is the process of identifying and removing errors from software?
10 * rand(1, 10)
Which command creates a row vector of 10 random numbers from the open interval (0, 10)?
Type this matrix into a MATLAB Script File to carry out the following instructions:𝐀 = [ −5 9 10 6 13 8 15 5 4]
a. Use MATLAB to create a vector 𝐵⃗ using the elements from the first row of matrix 𝐀.
b. Use MATLAB to create a vector 𝐶 using the elements from the third column of matrix 𝐀.
A = [-5 9 10; 6 13 8; 15 5 4]
B = A(1,:)
C = A(:,3)