photo

Omer N


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

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
4 个回答

排名
4,755
of 299,768

声誉
10

贡献数
0 个提问
4 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,800

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 165,831

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Revival Level 1
  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Changing Solver for Global optimization
Try looking into Multistart (Global Optimization Toolbox). Or if you run your own code, parfor.

5 years 前 | 1

| 已接受

已回答
to find value of unknown variable
You are trying to solve the equation symbolically and it takes a long time/fails. If you are okay with a numeric solution chan...

5 years 前 | 0

| 已接受

已回答
How would I enter the Differential Equation y''+100y=2sin(4t)
Try like so: syms y(t) simplify( dsolve(diff(y,2)+100*y==2*sin(4*t),t) ) ans = sin(4*t)/42 + C1*cos(10*t) - C2*sin(10*t)

6 years 前 | 0

已回答
Calculating the difference between a vector and time
Try this: A = [1 1 2 3]; A-[0,A(1:end-1)] ans = 1 0 1 1

6 years 前 | 0