Solved


Convert yards to feet
The goal of this script is to convert a value given in yards to feet.

20 days ago

Solved


UICBioE240 problem 1.12
The mathematical quantities e^x, ln x, and log x are calculated in Matlab using the expressions exp(x), log(x), and log10(x), re...

20 days ago

Solved


Output a vector which is table of 9
Output a vector which is table of 9

20 days ago

Solved


UICBioE240 problem 1.6
Find the tangent line of a right triangle given the two of the sides. So if A = [1 1] B = sqrt(2)

20 days ago

Solved


Whole Number Un-Concatenator
Write a function that accepts an integer and an index digit and returns a vector containing two integers which are the leading a...

20 days ago

Solved


Sum two matrices
Take two incoming matrices, and sum them

20 days ago

Solved


Create a Matrix of Zeros
Given an input x, create a square matrix y of zeros with x rows and x columns.

20 days ago

Solved


size

20 days ago

Solved


Speed of car travelling x meters in y seconds
What is the speed of a car if the car travelled x meters in y seconds? Supply the answer in m/s.

20 days ago

Solved


Area of a triangle
A triangle is given with base *'b'* ,vertical hight *'h'* . then find it's area.

20 days ago

Solved


Matrix element wise multiplication
Take two incoming vectors, and multiply them element wise

20 days ago

Solved


UICBioE240 2.8
Convert x number of hours into seconds.

20 days ago

Solved


Create a Standard Size Vector
Given an input x, create a row vector y from 1 to x with 5 elements.

20 days ago

Solved


square of a number
find square of a given number

20 days ago

Solved


03 - Matrix Variables 1
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_3a.png>> A 9x9 matrix full of 2's (Hint: use *ones* o...

20 days ago

Solved


Find the minimum element of the matrix
Example: If x = [3 9; 5 2] then y = 2

20 days ago

Solved


Find 100 from a Matrix and Replace With 0 with less computation time
pls use this matrix x = [208 40 167 180 112 70 192 215 90 19 231 100 9 100 97 100 ...

20 days ago

Solved


Create vector as shown in test cases
Create vector as shown in test cases

20 days ago

Solved


Find hen's weight.
If hen weights x kilos on two legs, how much does it weights on one leg? Output the result.

20 days ago

Solved


UICBioE240 problem 1.16
sin^2(pi/6) + cos^2(pi/6)

20 days ago

Solved


Bruh
Return 'bruh'.

20 days ago

Solved


Matlab Basics - Convert a row vector to a column vector
Write a script to convert a row (e.g. x = [1 2 3]) to a column (e.g. y = [1;2;3]), your script should be able to do this for any...

20 days ago

Solved


Find the Nth Root of a Given Number
Find the Nth root of a given number x. Examples x = 4096 n = 4 y = 8 x = 625 n = 5 y = 3.6239

20 days ago

Solved


Square root of number
Square root of given number.

20 days ago

Solved


Create a two dimensional zero matrix
You have to create a zero matrix of size (mxn) whose inputs are m and n and the elements of your matrix should be zeros. Exam...

20 days ago

Solved


Vectors counting by 2
Create a vector numbers from 7 to 15 in increments of 2

20 days ago

Solved


row removal
Remove the nth row from input matrix M and return the resulting matrix in output N.

20 days ago

Solved


Upper triangular matrix
Create a function to retrieve the upper triangular matrix of a matrix (without using tril). The matrix will always be square. ...

21 days ago

Solved


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

21 days ago

Solved


Basic commands - Greatest common divisor
Please write a function, which, will put as output greatest common divisor. Example: A = [-5 17; 10 0];...

21 days ago

Load more