Loop in a Function

3 visualizaciones (últimos 30 días)
Brittany Isbister
Brittany Isbister el 12 de Feb. de 2021
Respondida: Reshma Nerella el 19 de Feb. de 2021
Hi All,
I'm suppose to make a function that has the inputs lambda and twin with the outputs taus and tspike. The twin value is the time window for simulation starting at zero. Theres also a U value which is determined by using the rand function. The function needs to loop to get values for tau using the equation in the code and the corresponding tspike times. I made the function, but I'm not sure how to put in the twin or how to loop. Thanks for all the help in advance!
function [taus,tspike]=simulateSpikes(lambda,twin);% function with the inputs
U=rand;
while twin<= % making that it'll only run for the value and less
taus=-ln(U)/lambda; % equation for taus
tspike=(0;twin)% getting the tspike values between 0 and twin
end
  1 comentario
Rik
Rik el 12 de Feb. de 2021
Have you considered doing a basic Matlab tutorial? I would suggest Onramp.

Iniciar sesión para comentar.

Respuestas (1)

Reshma Nerella
Reshma Nerella el 19 de Feb. de 2021
Hi,
If you want to get different value of taus for each iteration consider placing
U=rand;
in the loop. Else it will be same for every iteration.
If you want to store all the values of taus for evry iteration, consider using arrays.
Consider going through the documentation page of while, to understand how it works.
Hope this helps!

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by