Community Profile

photo

Lauren Kiss


Last seen: 6 meses hace Con actividad desde 2020

Followers: 0   Following: 0

Estadísticas

  • Introduction to MATLAB Master
  • Solver

Ver insignias

Feeds

Ver por

Resuelto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

más de 3 años hace

Resuelto


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

más de 3 años hace

Resuelto


Determine the square root
Determine the square root of the value the user has entered, n.

más de 3 años hace

Resuelto


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<https://imgur...

más de 3 años hace

Resuelto


sum of first 'n' terms
Given n=10, find the sum of first 'n' terms Example: If n=10, then x=1,2,3,4,5,6,7,8,9,10. The sum of these n=10 terms is 55...

más de 3 años hace

Resuelto


square root
Find the square root (y) of an input (x).

más de 3 años hace

Resuelto


Convert Fahrenheit to Celsius
Calculate the Celsius temperature C given the Fahrenheit temperature F. Examples: Input F = 90 Output C is 32.22 I...

más de 3 años hace

Resuelto


Check if equal
Return true if all the elements of an nD array are equal, false otherwise.

más de 3 años hace

Resuelto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

más de 3 años hace

Resuelto


Reverse the elements of an array
Reverse the order of elements in an array: eg: input X = [ 1 2 3 ; 4 5 6 ; 7 8 9 ] o...

más de 3 años hace

Resuelto


Calculate the square of a number (Super Easy)
The goal is to calculate the square (y) of a number (x). Good way to start MatLab for beginners.

más de 3 años hace

Resuelto


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

más de 3 años hace

Resuelto


What percentage?
Calculate the output c as the percentage of a on b for given a and b.

más de 3 años hace

Resuelto


factorial of a number x
Factorial of a number x

más de 3 años hace

Resuelto


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 ...

más de 3 años hace

Resuelto


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

más de 3 años hace

Resuelto


Matrix for beginners
Multiply x and y elemwise.

más de 3 años hace

Resuelto


Add two numbers
Add two numbers (For beginners)

más de 3 años hace

Resuelto


Do you like your boss?
Do you like your boss? Answer can be any string! For example: Boss = 'Do you like your boss?'; Output = 'yes' or ...

más de 3 años hace

Resuelto


Celsius to Kelvin
Convert Celsius degrees to Kelvin temperature.

más de 3 años hace

Resuelto


Y=X
Given an input variable x, output a variable y that is equal in value to x. Example: Input x = 1 Output y is 1 Inp...

más de 3 años hace

Resuelto


Radians to Degrees
Convert radians to degrees.

más de 3 años hace

Resuelto


Degrees to Radian
Convert degrees to radians

más de 3 años hace

Resuelto


Convert radians to degrees
Given input in radians, output to degrees

más de 3 años hace

Resuelto


Convert degrees to radians
Given input in degrees, output to radians

más de 3 años hace

Resuelto


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<https://i.imgur.com/jlZDHhq.png>> Image courtesy of <http://up...

más de 3 años hace

Resuelto


Celsius to Fahrenheit converter
Convert Celsius to Fahrenheit degrees.

más de 3 años hace

Resuelto


Times 3 problem
When you enter the number, it should return the number multiplied by 3

más de 3 años hace

Resuelto


Square root of a number
Write a code that will output the square root of x.

más de 3 años hace

Resuelto


Multiply by 3
Given the variable x as your input, multiply it by three and put the result in y.

más de 3 años hace

Cargar más