✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。
🍎个人主页:Matlab科研工作室
🍊个人信条:格物致知。
更多Matlab仿真内容点击👇
⛄ 内容介绍
非接触测速在近程测速中有着较好的应用价值,毫米波雷达是非接触测速的一项关键技术.
⛄ 部分代码
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% FMCW Radar Simulator %
% Multi-lane, Multi-vehicle Traffic Radar %
% %
clc;clear
close all
%%
[I0,Q0,I1,Q1,I2,Q2,I3,Q3] = radar_simulation_wrapper;
disp("---------------------------------------------------")
disp(" FMCW Radar Simulation Outputs are: ")
disp(" [I0,Q0,I1,Q1,I2,Q2,I3,Q3]")
disp("---------------------------------------------------")
%%
data_processing_range_dopplor_sample
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Develop your Radar Data Processing Algorithm here: %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
disp("================================================================================")
disp(" 1T4R 24G Multi-lane Multi-vechile FMCW Traffic Radar Simulator")
disp("Author : Lin Junyang")
disp("Version : 1.0")
disp("Date : 2021/1/16")
disp("--------------------------------------------------------------------------------")
disp("Range detection is simply shown by caculationg FFT of a sample chirp.")
disp("AS A CHALLANGE, can you develop your alogrithm to detect the number of vechiles,")
disp("and the [X position,Y position, Lane number, Velocity] of each vechile.")
disp("================================================================================")
⛄ 运行结果