Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because
6 = 1 + 2 + 3
which can be displayed ...
約3年 前
解決済み
Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4
So if n = 3, then return
[1 2 2 3 3 3]
And if n = 5, then return
[1 2 2 3 3 3 4...
約3年 前
解決済み
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so:
x = [1 2 3 4]
Commas are optional, s...
Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.]
Non-scored bonus...
約3年 前
解決済み
Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....
約3年 前
解決済み
Find the Oldest Person in a Room
Given two input vectors:
* |name| - user last names
* |age| - corresponding age of the person
Return the name of the ol...
約3年 前
解決済み
Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...
約3年 前
解決済み
Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...
約3年 前
解決済み
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1.
Hint: use increment.
約3年 前
解決済み
Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for:
A = [ 1 5 8 ]
then
B = [ 1 1 5 ...
約3年 前
解決済み
Create a vector
Create a vector from 0 to n by intervals of 2.
約3年 前
解決済み
Flip the vector from right to left
Flip the vector from right to left.
Examples
x=[1:5], then y=[5 4 3 2 1]
x=[1 4 6], then y=[6 4 1];
Request not ...
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
Compare a value to a vector
Given a random value X and a random vector Y. you have to compare X to the Vector Y and make a decision.
case 1: X is a value i...
約3年 前
解決済み
Function(4)
Hit submit for some points!
function y = your_fcn_name(x)
y = x^2 - 4;
end
約3年 前
解決済み
COMPSC 200 help
Use this problem to earn some free points towards your 1,000. Just hit submit!
function y = your_fcn_name(x)
y = x^2 + 50;
e...
約3年 前
解決済み
Functions For Points
Use this fucntion to earn some free points!
function y = your_fcn_name(x)
y = x^2 + 5;
end
約3年 前
解決済み
Easy Function(3)
Hit submit for some free points.
function y = your_fcn_name(x)
y = x^2 + 30;
end
約3年 前
解決済み
CMPSC 200 help(2)
Use this problem to earn some easy points towards your 1,000! Just hit submit.
function y = your_fcn_name(x)
y = x^2 + 32;
e...
約3年 前
解決済み
Times 2 - START HERE
Try out this test problem first.
Given the variable x as your input, multiply it by two and put the result in y.
Examples:...