Python, C++, C, Java, Javascript, MATLAB, HTML, CSS, Arduino, Assembly
Spoken Languages:
English, Spanish
Pronouns:
He/him
Estadística
0 Preguntas
7 Respuestas
14 Archivos
Cody0 Problemas
15 Soluciones
CLASIFICACIÓN
5.010
of 295.605
REPUTACIÓN
10
CONTRIBUCIONES
0 Preguntas
7 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
2.702 of 20.252
REPUTACIÓN
613
EVALUACIÓN MEDIA
5.00
CONTRIBUCIONES
14 Archivos
DESCARGAS
101
ALL TIME DESCARGAS
4812
CLASIFICACIÓN
25.944
of 154.164
CONTRIBUCIONES
0 Problemas
15 Soluciones
PUNTUACIÓN
172
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
7 Público Canales
EVALUACIÓN MEDIA
61
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Solving nonlinear equation involving sum
It will take you a long time to evaluate the sum from n = 0 to n = 10000. You can solve it in a short time considering only fro...
más de 3 años hace | 0
How to solve 3 simultaneous algebraic equations with a equality constraint.
You only need to express in terms of and plot that relationship: syms x1 x2 x3 t x3 = solve(x1+x2+x3 == 420,x3) EQ1 = x1 ==...
más de 3 años hace | 0
how can I plot a unit step function?
This is my proposal, I hope it helps you: u = @(t) double(t>=0); h = @(t) u(t-2)-u(t-4); fplot(h,[0,5])
más de 3 años hace | 1
how to write a user defined function that calculates the maximum or minimum of a quadratic equation of the form
Try this: --------------------- f = @(x) x^2-5*x+6; initial = 0; fminsearch(f,initial) --------------------- To find a max...
alrededor de 5 años hace | 0
Why power function give a complex number result?
The "problem" appears when you raise the base (-x / x50) to power n. In IEEE floating-point computations: a ^ n = exp(n * log(...
alrededor de 5 años hace | 0
Haw can I calculate the difference between two points in a plot?
Try this: --------------------------------------- plot(...) [x,y] = ginput(2); % clic on each point dx = diff(x) dy = diff(...
alrededor de 5 años hace | 0
| aceptada
Adding semicolon and comma and saving it into .txt file
Try this low-level code: ----------------------------------------- x = randi(9,[1,2*6001]); % ACTUAL DATA fileID = fopen('da...
alrededor de 5 años hace | 0
| aceptada