Community Profile

photo

Bence Kenderes


Last seen: 1 year 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计数据

  • Promoter
  • Solver

查看徽章

Feeds

排序方式:

已解决


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

3 years 前

已解决


Transpose the Matrix
Transpose the given matrix, e.g. x=[a b;c d] transpose of x = [a c;b d]

3 years 前

已解决


Calculate the area of a circle
Given a circle of diameter x calculate its area

3 years 前

已解决


Mile to Kilometer
x is mile and y is km

3 years 前

已解决


Convert Kilometers to Miles
Convert kilometers to miles. Consider 1 km = 0.62 mile. Note: Don't use the '*' operator.

3 years 前

已解决


Determine the mean of matrix
Determine the mean of matrix without using mean function Hint: use simple algorithm

3 years 前

已解决


Find max
Find the maximum value of a given vector or matrix.

3 years 前

已解决


Min of a Matrix
Return the minimum value in the given matrix.

3 years 前

已解决


Matrix multiplication
Multiply two incoming matrices via matrix multiplication

3 years 前

已解决


Draw a 'Z'.
Given _n_ as input, generate a n-by-n matrix like 'Z' by _0_ and _1_ . Example: n=5 ans= [1 1 1 1 1 0 0 0 1 ...

3 years 前

已解决


Equal to their cube
Tell me three real numbers that are equal to their cubes?

3 years 前

已解决


Temperature conversion
Convert temperature in degrees Celsius (C) to temperature in degrees Kelvin (K). Assume your answer is rounded to the nearest Ke...

3 years 前

已解决


Given area find sides
In a right angle triangle given area 'A' one arm=x, another arm=2x then find the value of x. For example, area A=400 then ...

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 前

已解决


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

3 years 前

已解决


Is the input divisible by 3?
Return true if the input is divisible by 3 and false if not.

3 years 前

已解决


Squaring Matrix
Square the following matrix using matlab % A = 1 2 3 4 5 6 7 8 So new matrix should display...

3 years 前

已解决


counting for loop
Complete the function below using a for loop to count from 3 to N by 2. For example, if N is 10, count 3, 5, 7, 9 and stop. Fo...

3 years 前

已解决


Max of a Vector
Write a function to return the max of a vector

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 前

已解决


length of a vector
Find twice the length of a given vector.

3 years 前

已解决


Can we make a triangle?
Given three positive number, check whether a triangle can be made with these sides length or not. remember that in a triangle su...

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 前

已解决


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

3 years 前

已解决


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

3 years 前

已解决


kmph to mph converter
Convert the speed in miles/hour to km/hour.

3 years 前

已解决


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

3 years 前

已解决


Try 1.5.4: Celsius to Fahrenheit
Write a program to convert an input given in Celsius to Fahrenheit. Examples: Input celsiusValue = 100 Output fahrValu...

3 years 前

已解决


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

3 years 前

已解决


Fahrenheit to Celsius converter
Convert Fahrenheit to Celsius degrees.

3 years 前

加载更多