Solved


Area of a rectangle
Find the area of a rectangle with sides a and b

ongeveer 9 jaar ago

Solved


Matlab Basics II - 3 Dimensional Arrays
Assume x is a 3D array with n pages, representing students in a class, for each student (page in the array, the 3rd dimension), ...

ongeveer 9 jaar ago

Solved


Matlab Basics II - squares
Write a function that takes matrix A, and squares each element in the matrix example: A = [1 2 3] output = [1 4 9]

ongeveer 9 jaar ago

Solved


Matlab Basics II - Free Fall
An object freely falling from rest under gravity covers a distance x given by: x = 1/2 gt^2 write a function that calculat...

ongeveer 9 jaar ago

Solved


Matlab Basics II - Velocity of a particle
A particle is moving in space, such that it's velocity is given by: <<http://s30.postimg.org/5rf1xtvj5/cody1.png>> write a...

ongeveer 9 jaar ago

Solved


Matlab Basics II - Count rows in a matrix
Write a function that returns that number of rows in a vector or matrix x example: x = [1; 2; 3] output = 3

ongeveer 9 jaar ago

Solved


Matlab Basics II - Intervals
Write a function that takes an interval from a to b, and divides it into 5 parts example: a = 1, b = 2 output = 1 1.25 ...

ongeveer 9 jaar ago

Solved


Carnot cycle
Carnot engine is considered the most efficient heat engine.When operated between two temperatures T1 and T2, the efficiency is g...

ongeveer 9 jaar ago

Solved


Matlab Basics II - Create a vector with a repeated entry
Create a row vector of length n, filled with 4's, for example, if n = 3 output = [4 4 4] make sure to round UP when n is a...

ongeveer 9 jaar ago

Solved


Matlab Basics II - Max & Index of Max
Write a function that takes a vector x, then returns both the max value in x and its location in the vector for example x ...

ongeveer 9 jaar ago

Solved


Find the product of a Vector
How would you find the product of the vector [1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0 5.5 6.0] times 2?; x = [1 : 0.5 : 6]; y ...

ongeveer 9 jaar ago

Solved


Volume of a box
Given a box with a length a, width b, and height c. Solve the volume of the box.

ongeveer 9 jaar ago

Solved


Sum of integers numbers
Sum of the numbers from 1 to 100

ongeveer 9 jaar ago

Solved


y equals x divided by 2
function y = x/2

ongeveer 9 jaar ago

Solved


square number
Square a number

ongeveer 9 jaar ago

Solved


How long does it take to run a bath?
Given the *volume flow rate* (volume/time) of a faucet and the *volume* of a bath tub, find the amount of time it takes to fill ...

ongeveer 9 jaar ago

Solved


Areas
Given certain dimensions determine the area of that shape. If given only one value assume its the radius. Use round(x) to round ...

ongeveer 9 jaar ago

Solved


Skip by a multiple
Given an integer create an array of its multiples. Array must have a length of 15

ongeveer 9 jaar ago

Solved


Array of Ones
Create a 100 X 100 array of ones.

ongeveer 9 jaar ago

Solved


Alkane
Given a number, x, that is equal to the number of carbon atoms in an <http://en.wikipedia.org/wiki/Alkane alkane>, find, y, the ...

ongeveer 9 jaar ago

Solved


sum of the first 10 odd numbers
y = sum(first_10_odd_numbers)

ongeveer 9 jaar ago

Solved


Finding perimeter of a rectangle
A rectangle has a length of x centimeters and a width of w centimeters. Find the perimeter.

ongeveer 9 jaar ago

Solved


Divide by 4
Given the variable x as your input, divide it by four and put the result in y.

ongeveer 9 jaar ago

Solved


Divide by 4
Given the variable x as your input, divide it by 4 and put the result in y.

ongeveer 9 jaar ago

Solved


Times 32
X is given as your variable. Y is your output multiplied by 32 Example x=1 y=1x32=32

ongeveer 9 jaar ago

Solved


Find the square root of a value
Given the variable x as your input, find the square root and let the result be represented by y Examples: Input x = 4 O...

ongeveer 9 jaar ago

Solved


find the surface area of a cube
given cube side length x, find the surface area of the cube, set it equal to y

ongeveer 9 jaar ago

Solved


Covariance of Signal
Given a sine function with these characteristics below, give the covariance of this signal. N=51; n=1:N; x= sin(pi*0.50...

ongeveer 9 jaar ago

Solved


Sum Even Numbers
Given a number x, make the summation of all the even until x. For instance, x = 7, so y = 2+4+6 = 12 * x = [3] * y = 2 * ...

ongeveer 9 jaar ago

Solved


times 5
Given the variable x as your input, multiply it by five and put the result in y.

ongeveer 9 jaar ago

Load more