photo

Japheth Gielen


自 2016 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

4 个提问
0 个回答

排名
226,531
of 300,396

声誉
0

贡献数
4 个提问
0 个回答

回答接受率
100.0%

收到投票数
0

排名
 of 20,945

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 168,524

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


If I have functions written that require a user input, how would I test different points without copy and pasting the code over and over again?
This is the code I have: x = input('Type a value for x: '); for i = 1:9 vec(i) = (-1)^(i+1)*x^(2*i-1)/factorial(2*i-1...

9 years 前 | 1 个回答 | 0

1

个回答

提问


How do I write a function to find the taylor series expansion of sin(x) to the 9th term?
I am asked to create a function file to evaluate the value of sin(x) accurate to 9 Taylor Series terms. I know there is a way to...

9 years 前 | 1 个回答 | 0

1

个回答

提问


How do I graph a constant within a function?
I was given x = .5*g*t^2 where x is the position of an object at time t and g is the acceleration. I was asked to "cre...

9 years 前 | 1 个回答 | 0

1

个回答

提问


How can I evaluate a function at a vector and plot the returned values?
Using this function code: function [y1,y2] = f(x1) y1 = 6*sin(x1) + cos(2*x1) y2 = 12*sin(2*x1) + cos(4*x1) end I n...

9 years 前 | 1 个回答 | 0

1

个回答