Q4:What are the values of x and a after the following statements have been executed? a = 0; i = 1; x = 0; a = a +i; x = x +i/a; a = a + i; x = x +i/ a; a = a + i; x = x +i/ a; a = a +i; x = x +i/ a; Q5: (a) Work out by hand the output of the following script for n=4: n = input( 'Number of terms?'); s = 0; for k = 1:n S= s+1/ (k 2); end; disp(sqrt(6 * s)) If you run this script for larger and larger values of n you will find that the output approaches a well-known limit. Can you figure out what it is? (b) Rewrite the script using vectors and array operations. M.sc. Zena Ahmed 2016 36 MATLAB Section4 Q6:Work through the following script by hand. Draw up a table of the values of i, j and m to show how their values change while the script executes. Check your answers by running the script. v = [31 5]; i = 1; for j = v i=i+ 1; if i == 3 i=i+ 2; m = i+j; end end

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 20PE: When you borrow money to buy a house, a car, or for some other purpose, you repay the loan by making...
icon
Related questions
Question
Q4:What are the values of x and a after the following statements have
been
executed?
a = 0;
i = 1;
x = 0;
a = a + i;
x = x +i/ a;
a = a + i;
x = x +i/ a;
a = a + i;
X = x +i/ a;
a = a + i;
x = x +i/ a;
Q5:
(a) Work out by hand the output of the following script for n=4:
n = input( 'Number of terms? );
s = 0;
for k = 1:n
S = s+1/ (k *2);
end;
disp(sqrt(6 * s))
If you run this script for larger and larger values of n you will find that
the output approaches a well-known limit. Can you figure out what it is?
(b) Rewrite the script using vectors and array operations.
36
M.sc. Zena Ahmed 2016
MATLAB
Section4
Q6:Work through the following script by hand. Draw up a table of the
values of i, j and m to show how their values change while the script
executes. Check your answers by running the script.
v = [31 5];
i = 1;
for j = v
i=i+1;
if i == 3
i=i+ 2;
m = i+ j;
end
end
Transcribed Image Text:Q4:What are the values of x and a after the following statements have been executed? a = 0; i = 1; x = 0; a = a + i; x = x +i/ a; a = a + i; x = x +i/ a; a = a + i; X = x +i/ a; a = a + i; x = x +i/ a; Q5: (a) Work out by hand the output of the following script for n=4: n = input( 'Number of terms? ); s = 0; for k = 1:n S = s+1/ (k *2); end; disp(sqrt(6 * s)) If you run this script for larger and larger values of n you will find that the output approaches a well-known limit. Can you figure out what it is? (b) Rewrite the script using vectors and array operations. 36 M.sc. Zena Ahmed 2016 MATLAB Section4 Q6:Work through the following script by hand. Draw up a table of the values of i, j and m to show how their values change while the script executes. Check your answers by running the script. v = [31 5]; i = 1; for j = v i=i+1; if i == 3 i=i+ 2; m = i+ j; end end
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Unreferenced Objects
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning