Discover
Questions library
Collections library
Find online teacher
login
Discover
questions library
Find online teacher
login
Popular searches:
if-else
class-diagram
flowchart
Polymorphism
Home
Questions
Questions
Study lists
roba younis Questions
2249 Questions
Write a for loop that will print the column of real numbers from 2.7 to 3.5 in steps of 0.2
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
152
Write a function called “makemat” that will receive two row vectors as input arguments, and from them create and return a matrix with two rows. You may not assume that the length of the vectors is known
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
415
Store a value in a variable and then use isa to test to see whether or not it is the type double
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
155
Simplify this statement:
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
150
Write a script that will prompt the user for a string and then print whether it was empty or not
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
162
Modify the areaMenu script to use a switch statement to decide which area to calculate
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
196
Write a script areaMenu that will print a list consisting of “cylinder”, “circle”, and “rectangle”. It prompts the user to choose one, and then prompts the user for the appropriate quantities (e.g., the radius of the circle) and then prints its area
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
254
Rewrite the following nested if-else statement as a switch statement that accomplishes exactly the same thing. Assume that num is an integer variable that has been initialized, and that there are functions f1, f2, f3, and f4
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
212
Rewrite the following switch statement as one nested if-else statement (elseif clauses may be used). Assume that there is a variable letter and that it has been initialized
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
183
Ch4Ex21.m % Prints whether a storm is a tropical depression, tropical % storm, or hurricane based on wind speed wind = input('Enter the wind speed of the storm: '); if wind < 38 disp('Tropical depression') elseif wind >= 38 && wind < 73 disp('Tropical storm')
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
263
Whether a storm is a tropical depression, tropical storm, or hurricane is determined by the average sustained wind speed
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
173
Write a script that will generate one random integer, and will print whether the random integer is an even or an odd number. (Hint: an even number is divisible by 2, whereas an odd number is not; so check the remainder after dividing by 2.)
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
164
In aerodynamics, the Mach number is a critical quantity. It is defined as the ratio of the speed of an object (e.g., an aircraft) to the speed of sound. If the Mach number is less than 1, the flow is subsonic; if the Mach number is equal to 1, the flow is transonic
Matlab
2022-11-29
Answers
30
Question
40
Followers
30
0
1
246
Total:
2249
Previous
23
24
25
26
27
Next
Go