photo

Matt Bowring


The University of New Hampshire

Last seen: 5 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

消息

Junior at The University of New Hampshire pursuing a B.S. in Mechanical Engineering.

统计学

All
MATLAB Answers

0 个提问
1 个回答

File Exchange

2 文件

Cody

0 个问题
12 个答案

排名
158,330
of 300,967

声誉
0

贡献数
0 个提问
1 个回答

回答接受率
0.00%

收到投票数
0

排名
8,573 of 21,126

声誉
96

平均
5.00

贡献数
2 文件

下载次数
9

ALL TIME 下载次数
918

排名
35,972
of 172,078

贡献数
0 个问题
12 个答案

评分
130

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • 5-Star Galaxy Level 1
  • Personal Best Downloads Level 2
  • First Submission
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已提交


Rankine Cycle
Calculates the vector curves to plot a T-s and P-v diagram for an idealized Rankine Cycle.

6 years 前 | 7 次下载 |

0.0 / 5
Thumbnail

已解决


Replace NaNs with the number that appears to its left in the row.
Replace NaNs with the number that appears to its left in the row. If there are more than one consecutive NaNs, they should all ...

6 years 前

已解决


Is the Point in a Circle?
Check whether a point or multiple points is/are in a circle centered at point (x0, y0) with radius r. Points = [x, y]; c...

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

6 years 前

已提交


Temperature - Entropy Diagram for Stirling Cycle
Generates the s and T vectors along the respective x and y axes. This allows for easy plotting of the T-s diagram via plot(s,T)....

6 years 前 | 2 次下载 |

0.0 / 5
Thumbnail

已回答
how to validate the built in input function
You could add something like this: if choice ~= 1 || choice ~= 0: error('Please enter either a 1 or 0.') end If you don'...

6 years 前 | 0

已解决


Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F(n) = F(n-1) + F(n-2) * where F(1) = 1 and F(1)...

6 years 前

已解决


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.

6 years 前

已解决


Geometric series
Find the sum, given the first term t1, the common ratio r, and number of terms n. Examples If input t1=1, r=1, n=7 the...

6 years 前

已解决


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

6 years 前

已解决


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

6 years 前

已解决


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

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

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

6 years 前

已解决


Quadratic equation
given three inputs (a, b, c) for the equation a*x^2+b*x+c=0; return 1 if the roots are complex (non zero imaginary), and 0 if th...

6 years 前