photo

Omer N


Last seen: más de 2 años hace Con actividad desde 2019

Followers: 0   Following: 0

Estadística

MATLAB Answers

0 Preguntas
4 Respuestas

CLASIFICACIÓN
4.755
of 300.321

REPUTACIÓN
10

CONTRIBUCIONES
0 Preguntas
4 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
 of 20.913

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.093

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Revival Level 1
  • Knowledgeable Level 1
  • First Answer

Ver insignias

Feeds

Ver por

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

casi 6 años hace | 1

| aceptada

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

casi 6 años hace | 0

| aceptada

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

más de 6 años hace | 0

Respondida
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

más de 6 años hace | 0