Community Profile

photo

Lauren Kiss


Last seen: 5 months 前 自 2020 起处于活动状态

统计数据

  • Introduction to MATLAB Master
  • Solver

查看徽章

Content Feed

排序方式:

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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.

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


factorial of a number x
Factorial of a number x

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


Matrix for beginners
Multiply x and y elemwise.

3 years 前

已解决


Add two numbers
Add two numbers (For beginners)

3 years 前

已解决


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

3 years 前

已解决


Celsius to Kelvin
Convert Celsius degrees to Kelvin temperature.

3 years 前

已解决


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

3 years 前

已解决


Radians to Degrees
Convert radians to degrees.

3 years 前

已解决


Degrees to Radian
Convert degrees to radians

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


Celsius to Fahrenheit converter
Convert Celsius to Fahrenheit degrees.

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

加载更多