Community Profile

photo

Nora Al Allaf


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

统计数据

All
  • Thankful Level 2
  • Solver
  • Thankful Level 1

查看徽章

Content Feed

排序方式:

已解决


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

3 years 前

已解决


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

3 years 前

已解决


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

3 years 前

已解决


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

3 years 前

已解决


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

3 years 前

已解决


Return area of square
Side of square=input=a Area=output=b

3 years 前

已解决


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

3 years 前

已解决


Add two numbers
Given a and b, return the sum a+b in c.

3 years 前

已解决


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

3 years 前

提问


color area between functions
Hi, I have two functions g = exp(-x.^2./2) and h = x.^2-3.*x+2; there is a region enclosed between them, between x=0 and x=3 ...

3 years 前 | 1 个回答 | 0

1

个回答

提问


raise power to power in title
Hi~ I wanna write a title to a graph this way >> y = x * e^(- x^2 / 2 ) title(' y = x*e^(- x^2 / 2) ') writes e as base and...

3 years 前 | 1 个回答 | 0

1

个回答

提问


multiple functions within one script
Hello :) I'm trying to use a function inside another one min_bisect is the first one and kastbana_5(x) is the second [10,...

3 years 前 | 1 个回答 | 0

1

个回答

提问


after how many terms does an equation have the same five decimals as pi/4?
Hi, so it's given that s = 1 − 1/3 + 1/5 − 1/7 + 1/9 − 1/11 + · · · + (−1)^n / (2n + 1) what I need to do is, with a while-loo...

3 years 前 | 1 个回答 | 0

1

个回答