Delshad Ayoubi
Followers: 0 Following: 0
Estadística
9 Preguntas
0 Respuestas
0 Problemas
8 Soluciones
CLASIFICACIÓN
96.737
of 295.467
REPUTACIÓN
0
CONTRIBUCIONES
9 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
55.56%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
41.102
of 153.912
CONTRIBUCIONES
0 Problemas
8 Soluciones
PUNTUACIÓN
90
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
How can I make my code faster?
clear, clc, close all %-------------------------------------------------------------% N = 10^3; M = 400; radie = 5...
más de 6 años hace | 1 respuesta | 0
1
respuestaPregunta
How do I use hist3 with my code?
In this code, I'm plotting a lot of particles and I want to represent them visually in a hist3 plot. I don't know how to make it...
más de 6 años hace | 0 respuestas | 0
0
respuestasPregunta
Double for loop in a random walk. How do I loop over all particles simultaneously instead of looping the amount of steps for each separate particle one at a time?
I currently have a script that utilizes a double for loop in order to create a random walk in 2D. It however is looping over all...
más de 6 años hace | 2 respuestas | 0
2
respuestasPregunta
How do I make a 2D randomwalk?
I have so far only been able to make a 1D randomwalk but I have to make it into 2D. Below is my code for 1D. How do I change it ...
casi 7 años hace | 1 respuesta | 0
1
respuestaPregunta
I want to loop a value into a vector, how do I do this?
I am trying to loop through my script in order to get several values of one variable (D_N), and then putting all these values in...
alrededor de 7 años hace | 2 respuestas | 0
2
respuestasPregunta
How to put all the values of a for loop in a vector?
I want D_N to get another value in each loop and then put that value in a vector, T amount of times. Basically, I want to be abl...
alrededor de 7 años hace | 0 respuestas | 0
0
respuestasPregunta
Plot the same function several times in one go (Random walk)?
clear clc ================== N = 10; % number of steps. M = 10; x_t(1) = 0; for n = 1:N a = ...
alrededor de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
How do I draw the graph of the same function several times?
clear clc x_t(1) = 0; N = 10^2; for t = 1:N xlabel('t'), ylabel('x_t'), title('Random Walk') ...
alrededor de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
Write a function fml(x) where given vector x returns first, middle and last. If the number of elements in the vector are even, middle should take the mean value of the innermost elements.
function [first, middle, last] = fml(x) %FML Returns the first, middle, and last element of x first = x(1); last = x(le...
alrededor de 7 años hace | 1 respuesta | 0