Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- %% Problem 2
- m = logspace(1 , 6 , 6)
- CH15_2b = energy(m)'
- %% Problem 3
- PV = 1000;
- I = .005;
- n = (10 * 12);
- CH15_3b = future_value(PV, I, n)'
- %% Problem 1
- x = input('Enter a value for x...');
- CH16_1 = sin(x)
- %% Problem 2
- x = input('Enter several values in brackets (i.e. [1 , 2 , 3]...');
- CH16_2 = max(x)
- %% Problem 3
- b = input('Enter the area of the base of the cone...');
- h = input('Enter the height of the cone...');
- V = 1/3 * b * h
Advertisement