已解决


Matrix multiplication
Multiply two incoming matrices via matrix multiplication

3 years 前

已解决


Sum two matrices
Take two incoming matrices, and sum them

3 years 前

已解决


multiple of nine?
Given a positive number n, return true if n is a multiple of 9 and false if not. Do not make the division and do not use functio...

3 years 前

已解决


ASCII Code
Using matlab, give the symbol that is associated with ASCii code 90.

3 years 前

已解决


square a vector-Given the variable x as your input, square it and put the result in y.
function y = (x)squared y = x; end

3 years 前

已解决


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

3 years 前

已解决


find the mean of all elements in a matrix
given a matrix, just find the mean of all elements in the matrix

3 years 前

已解决


Crate a vector of logarithmically spaced
Create a vector of logarithmically spaced from 10^0 to 10^x with n sample Example: if x=4 and n=3 Answer must be=[1 100 10...

3 years 前

已解决


Remove and Sort
Given a randomized array n, sort it and remove all odd integers. n=5 y = [2 4]

3 years 前

已解决


Find minimum and maximum elements of an array
For a given array find minimum and maximum elements of an array and store minimum value in first index of output and maximum in ...

3 years 前

已解决


Generate the sum of Squares of the given number
|P(n) = 1^2 + 2^2 + ... + n^2| |P(1) = 1| |P(2) = 1 + 4 = 5;| |P(3) = 5 + 9 = 14;| |P(4) = 14 + 16 = 30;|

3 years 前

已解决


Power supply: 230V to 115V
The problem is simple: we have a wall outlet which supplies 230V and an apparatus that requires 115V. Software is always chea...

3 years 前

已解决


Calculate the answer to life the universe and everything
<https://en.wikipedia.org/wiki/42_(number)>

3 years 前

已解决


vectors counting by 5
Create a vector with numbers from x_min to x_max in increments of 5.

3 years 前

已解决


Replace 0 indices in array with 1's
Take a incoming vector, and replace 0's with ones

3 years 前

已解决


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

3 years 前

已解决


Square
square root of x

3 years 前

已解决


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]

3 years 前

已解决


Find x in provided equation!
x^2-2*x+1=0 This polynomial can be expressed by using each term's coefficients, such as [1 -2 1]. Using the polynomial ...

3 years 前

已解决


cube of number
find cube of number

3 years 前

已解决


Convert from integer to binary
if true % decimalToBinaryVector(x) end

3 years 前

已解决


Display negative numbers
Given array,x, display all the negative numbers and display output as y. Example x=[1 -2 3 -4] , output is y=[-2 -4].

3 years 前

已解决


Vertically stack two vectors
Stack two vectors on top of each-other so that... if A = [1 5 3] and B = [8 6 4] then C = [1 5 3 ; 8 6 4]

3 years 前

已解决


Hydrogens in a Saturated Hydrocarbon
Given (c) carbon atoms in a saturated hydrocarbon molecule (all single bonds), how many hydrogen atoms (h) are in the molecule?

3 years 前

已解决


Solve expression I
Solve expression (1+sin(x))/cos(x)+cos(x)/(1+sin(x)) for given vector x.

3 years 前

已解决


Calculating selling price
Cost of a Product is $x What should be the selling price if you want to gain 10%?

3 years 前

已解决


Step up
For given input array, output a array with all elements step up by two

3 years 前

已解决


Flipping a Matrix
Flipping matrix up and down. If a central row is exists, leave it, and flip remaining rows. Example Mat = magic(3) ...

3 years 前

已解决


How many jokers?
* Given DNA codes of a group of suspects, * and a code for certain types of jokers, * Count how many jokers of that type. * ...

3 years 前

已解决


Who has power to do everything in this world?
There is only one person who is older than this universe. He is Indian version of Chuck Norris.

3 years 前

加载更多