Community Profile

photo

Omer N


Last seen: 10 months ago Active since 2019

Statistics

  • Revival Level 1
  • Knowledgeable Level 1
  • First Answer

View badges

Content Feed

View by

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

4 years ago | 1

| accepted

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

4 years ago | 0

| accepted

Answered
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)

5 years ago | 0

Answered
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

5 years ago | 0