function [ prob ] = llegadasPoisson( lambda,k,dt ) %UNTITLED Summary of this function goes here % Detailed explanation goes here prob = (((lambda*dt)^k)/factorial(k))*exp(-lambda*dt); end