function [ y ] = logisticmap( lambda, x ) %LOGISTICMAP Summary of this function goes here % Detailed explanation goes here y = lambda.*x.*(1-x); end