Loop in a Function

조회 수: 3 (최근 30일)
Brittany Isbister
Brittany Isbister 2021년 2월 12일
답변: Reshma Nerella 2021년 2월 19일
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
Rik
Rik 2021년 2월 12일
Have you considered doing a basic Matlab tutorial? I would suggest Onramp.

댓글을 달려면 로그인하십시오.

답변 (1개)

Reshma Nerella
Reshma Nerella 2021년 2월 19일
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!

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by