function [ x ] = funcao_gera_dados( x0, sigma0, N, sigmaSys ) if nargin<4 sigmaSys = 0; end x = x0 + sigma0*randn(N,1) + sigmaSys*randn(1);