photo

Omar Abedalrahman


自 2016 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

4 个提问
0 个回答

Cody

0 个问题
16 个答案

排名
232,899
of 300,904

声誉
0

贡献数
4 个提问
0 个回答

回答接受率
100.0%

收到投票数
0

排名
 of 21,108

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
29,704
of 171,602

贡献数
0 个问题
16 个答案

评分
170

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1
  • Commenter
  • Solver

查看徽章

Feeds

排序方式:

提问


Can anyone help me with this question using MATLAB? I'm not sure which function to use.
Wright et al. (A-2) used the 1999-2000 National Health and Nutrition Examination Survey (NHANES) to estimate dietary intake of 1...

9 years 前 | 2 个回答 | 0

2

个回答

已解决


Is my wife right?
Regardless of input, output the string 'yes'.

9 years 前

已解决


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

9 years 前

已解决


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 years 前

已解决


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

9 years 前

已解决


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

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

9 years 前

已解决


ASCII Code
Using matlab, give the symbol that is associated with ASCii code 90.

9 years 前

已解决


Unit conversion
Convert x degree Celsius to y degree Fahrenheit.

9 years 前

已解决


Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250

9 years 前

已解决


Corresponding letter to ASCII code.
Given the letter, the output will show the corresponding ASCII code.

9 years 前

已解决


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

9 years 前

已解决


Annual Salary
What is the annual salary of Mr. Cody if he works 40 hours a week and gets $x per hour and a yearly bonus of $2000? (Let, 50 wee...

9 years 前

已解决


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

9 years 前

已解决


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

9 years 前

1

个回答

提问


Can someone show me how to replace the 4th elements of vector a2 with c1, and name the new vector a4?
a2 = [1.1 2.2 3 4.4 5.5]; c1 = 5-7i

9 years 前 | 1 个回答 | 0

1

个回答

提问


How do I include a variable when trying to display a string?
I created a start time and saved it. I want to include this variable in the end of the string, but what I'm doing is not workin...

9 years 前 | 1 个回答 | 0

1

个回答

已解决


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

9 years 前