已解决


Energy of a photon
&#9883 &#9762 &#9883 &#9762 &#9883 &#9762 &#9883 Given the frequency F of a photon in giga hertz. Find energy E of this photon...

9 months 前

已解决


Program an exclusive OR operation with logical operators
Program an exclusive or operation *without* using the MATLAB function xor. Use logical operators like |, &, ~, ... instead. ...

9 months 前

已解决


vector to string
Determine what the ASCII characters spell out. Example: input = [ 72 73 71 72] output = 'HIGH'

9 months 前

已解决


Remove All elements less than 5
Given an input vector x, remove all elements of x less than 5 . Example: Input x = [ 1 2 5 7 3 ] Output y is [ 5 7 ...

9 months 前

已解决


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

9 months 前

已解决


calculate the tangent of angle in radians
Calculate the tangent of angle in degrees

9 months 前

已解决


Calculate the base-10 logarithm of a number
Calculate the logarithm of number x

9 months 前

已解决


Determine if a row vector has NaN
Determine if a row vector x has NaN

9 months 前

已解决


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]

9 months 前

已解决


ASCII code of a leter.
Given the letter, the output will show the corresponding ASCII code.

9 months 前

已解决


If you have matrix A, create matrix B using matrix A as an "element"
A = [1 2 3 4; 5 6 7 8] B = [1 2 3 4 1 2 3 4; 5 6 ...

9 months 前

已解决


Corresponding ASCII code.
Given the number, the output will show the corresponding ASCII code.

9 months 前

已解决


Log of a number
Write a script that will give the log of x as output.

9 months 前

已解决


Unit conversion
Convert x degree Celsius to y degree Fahrenheit.

9 months 前

已解决


Values in Array
How many values are in the array

9 months 前

已解决


metre to feet converter
The idea is to make a converter, which exchange meters to feets. We use a factor of 1m = 3.281*1f. so 3m are equals to 9.843 m...

9 months 前

已解决


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

9 months 前

已解决


Sum two matrices
Take two incoming matrices, and sum them

9 months 前

已解决


Dot Product

9 months 前

已解决


Find Logic 32

9 months 前

已解决


Find Logic 18

9 months 前

已解决


Find Logic 25

9 months 前

已解决


Find Logic 19

9 months 前

已解决


Enlarge array
Given an m-by-n numeric array (A) and a 1-by-2 vector (sz) indicating the dimensions [p q] to enlarge each element, return an (m...

9 months 前

已解决


Palindrome numbers
Find the palindrome numbers (two or more digits) from 1 to n where n is the number passed to the function.

9 months 前

已解决


Palindrome Check
Check whether the entire matrix is palindrome or not. Example matrix = [7 8 7] matrix_reverse = [7 8 7] So the mat...

9 months 前

已解决


Create the following sequence : 0 1 1 4 9 25 64 169 ...
The sequence 0, 1, 1, 4, 9, 25, 64, 169, ... represents the square of the sequence of Fibonacci numbers. Let n repres...

9 months 前

已解决


Find the square of the sum of the digits of a number
If a number (n) is provided as an input, find the square of the sum of the digits of the number. Example If n = 21, the an...

9 months 前

已解决


Delete blanks at the end of string
you got to delete all blank spaces which appears at the end of string

9 months 前

已解决


string comparision
compare two strings if both are same return 1 else return 0

9 months 前

加载更多