1; clear all debug_on_error=1; debug_on_warning=0; silent_functions=1; global model model.c = 3*10^8; model.f_c = 2*10^9; model.f_s = 2*model.f_c; model.d = 50; model.r = 2500; model.lambda = model.c/model.f_c; model.delta_theta = pi/180; %resolució angular (radiants) model.v = 100; %m/s; 100km/h=27.7m/s, 100m/s=360km/h model.Q = 3; model.dt = 50*10^-9; model.snapshots = 1; model.beta = 0.9; model.noise = 1; model.fading = 1; model.SNR = 0; model.multipath = 'none'; global options options.save = 0; options.plot = 1; options.max_t = 100000; setup_model;