├── .gitignore ├── docs ├── AHLogo.png ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── book_cover.jpg └── book_cover_small.png ├── jupyter ├── Chapter01 │ └── jupyter.ipynb ├── Chapter02 │ ├── apparent_elevation.ipynb │ ├── apparent_range.ipynb │ ├── atmosphere.ipynb │ ├── beam_spreading.ipynb │ ├── cloud_fog.ipynb │ ├── diffraction.ipynb │ ├── ducting.ipynb │ ├── lib_path.py │ ├── plane_waves.ipynb │ ├── rain_attenuation.ipynb │ ├── reflection_transmission.ipynb │ └── vegetation.ipynb ├── Chapter03 │ ├── circular_aperture.ipynb │ ├── circular_array.ipynb │ ├── horn.ipynb │ ├── lib_path.py │ ├── linear_array.ipynb │ ├── linear_wire.ipynb │ ├── loop.ipynb │ ├── planar_array.ipynb │ └── rectangular_aperture.ipynb ├── Chapter04 │ ├── hertzian_dipole.ipynb │ ├── lib_path.py │ ├── loop_gain.ipynb │ ├── maximum_detection_range.ipynb │ ├── minimum_detectable_signal.ipynb │ ├── output_signal_to_noise.ipynb │ ├── output_signal_to_noise_bistatic.ipynb │ ├── output_signal_to_noise_search.ipynb │ ├── ovals_of_cassini.ipynb │ ├── power_aperture.ipynb │ ├── power_at_radar.ipynb │ ├── power_at_radar_bistatic.ipynb │ └── power_density.ipynb ├── Chapter05 │ ├── adc.ipynb │ ├── coherent_detector.ipynb │ ├── envelope_detector.ipynb │ ├── lib_path.py │ ├── low_pass_filter.ipynb │ ├── noise_figure.ipynb │ ├── resolution.ipynb │ └── sensitivity_time_control.ipynb ├── Chapter06 │ ├── binary_integration.ipynb │ ├── cfar.ipynb │ ├── coherent_integration.ipynb │ ├── gaussian_noise_pd.ipynb │ ├── lib_path.py │ ├── non_coherent_integration.ipynb │ ├── optimum_binary.ipynb │ ├── probability_distributions.ipynb │ ├── rayleigh_noise_pd.ipynb │ ├── shnidman_approximation.ipynb │ └── single_pulse_snr.ipynb ├── Chapter07 │ ├── frustum.ipynb │ ├── infinite_cylinder.ipynb │ ├── infinite_cylinder_oblique.ipynb │ ├── infinite_strip.ipynb │ ├── lib_path.py │ ├── rectangular_plate.ipynb │ ├── right_circular_cone.ipynb │ ├── rounded_nose_cone.ipynb │ └── stratified_sphere.ipynb ├── Chapter08 │ ├── barker_ambiguity.ipynb │ ├── frank_ambiguity.ipynb │ ├── lfm_pulse_ambiguity.ipynb │ ├── lfm_train_ambiguity.ipynb │ ├── lib_path.py │ ├── matched_filter.ipynb │ ├── prn_ambiguity.ipynb │ ├── pulse_train_ambiguity.ipynb │ ├── single_pulse_ambiguity.ipynb │ ├── stepped_frequency.ipynb │ └── stretch_processor.ipynb ├── Chapter09 │ ├── alpha_beta.ipynb │ ├── alpha_beta_gamma.ipynb │ ├── kalman_constant_acceleration.ipynb │ ├── kalman_constant_velocity.ipynb │ ├── kalman_epsilon.ipynb │ ├── kalman_sigma.ipynb │ └── lib_path.py ├── Chapter10 │ ├── back_projection_2d.ipynb │ ├── lib_path.py │ └── stripmap_2d.ipynb └── Chapter11 │ ├── burn_through_range.ipynb │ ├── crossover_range.ipynb │ ├── delay_line.ipynb │ ├── jammer_to_signal.ipynb │ └── lib_path.py ├── mlradar ├── Chapter01 │ └── initial_test.m ├── Chapter02 │ ├── apparent_elevation_example.m │ ├── apparent_range_example.m │ ├── atmosphere_example.m │ ├── beam_spreading_example.m │ ├── cloud_fog_example.m │ ├── diffraction_example.m │ ├── ducting_example.m │ ├── plane_waves_example.m │ ├── rain_attenuation_example.m │ ├── reflection_transmission_example.m │ └── vegetation_attenuation_example.m ├── Chapter03 │ ├── circular_aperture_example.m │ ├── circular_array_example.m │ ├── horn_example.m │ ├── linear_array_example.m │ ├── linear_wire_example.m │ ├── loop_example.m │ ├── planar_array_example.m │ └── rectangular_aperture_example.m ├── Chapter04 │ ├── hertzian_dipole_example.m │ ├── loop_gain_example.m │ ├── maximum_detection_range_example.m │ ├── minimum_detectable_signal_example.m │ ├── ouput_signal_to_noise_bistatic_example.m │ ├── output_signal_to_noise_example.m │ ├── output_signal_to_noise_search_example.m │ ├── ovals_of_cassini_example.m │ ├── power_aperture_example.m │ ├── power_at_radar_bistatic_example.m │ ├── power_at_radar_example.m │ └── power_density_example.m ├── Chapter05 │ ├── adc_example.m │ ├── coherent_detector_example.m │ ├── envelope_detector_example.m │ ├── low_pass_filter_example.m │ ├── noise_figure_example.m │ ├── resolution_example.m │ └── sensitivity_time_control_example.m ├── Chapter06 │ ├── binary_integration_example.m │ ├── cfar_example.m │ ├── coherent_integration_example.m │ ├── gaussian_noise_pd_example.m │ ├── non_coherent_integration_example.m │ ├── optimum_binary_example.m │ ├── probability_distributions_example.m │ ├── rayleigh_noise_pd_example.m │ ├── shnidman_example.m │ └── single_pulse_snr_example.m ├── Chapter07 │ ├── fdtd_example.m │ ├── frustum_example.m │ ├── infinite_cylinder_example.m │ ├── infinite_cylinder_oblique_example.m │ ├── infinite_strip_example.m │ ├── po_example.m │ ├── rectangular_plate_example.m │ ├── right_circular_cone_example.m │ ├── rounded_nose_cone_example.m │ └── stratified_sphere_example.m ├── Chapter08 │ ├── PRN_ambiguity_example.m │ ├── barker_ambiguity_example.m │ ├── frank_ambiguity_example.m │ ├── lfm_pulse_ambiguity_example.m │ ├── lfm_train_ambiguity_example.m │ ├── matched_filter_example.m │ ├── pulse_train_ambiguity_example.m │ ├── single_pulse_ambiguity_example.m │ ├── stepped_frequency_example.m │ └── stretch_processor_example.m ├── Chapter09 │ ├── alpha_beta_example.m │ ├── alpha_beta_gamma_example.m │ ├── kalman_ca_example.m │ ├── kalman_cv_example.m │ ├── kalman_epsilon_example.m │ └── kalman_sigma_example.m ├── Chapter10 │ ├── back_projection_3d_example.m │ ├── back_projection_backhoe_example.m │ ├── back_projection_cv_example.m │ ├── back_projection_example.m │ ├── stripmap_cv_example.m │ └── stripmap_example.m ├── Chapter11 │ ├── burn_through_range_example.m │ ├── crossover_range_example.m │ ├── delay_line_example.m │ └── jammer_to_signal_example.m └── libs │ ├── ambiguity │ ├── hamming.m │ ├── hanning.m │ ├── kaiser.m │ ├── lfm_pulse.m │ ├── lfm_train.m │ ├── mls.m │ ├── n_phase_code.m │ ├── phase_coded_waveform.m │ ├── pulse_train.m │ └── single_pulse.m │ ├── antennas │ ├── aperture │ │ ├── circular_te11_ground_plane.m │ │ ├── circular_uniform_ground_plane.m │ │ ├── rectangular_te10_ground_plane.m │ │ ├── rectangular_uniform_free_space.m │ │ └── rectangular_uniform_ground_plane.m │ ├── array │ │ ├── circular_array.m │ │ ├── linear_array.m │ │ ├── planar_array.m │ │ └── tschebyscheff_coefficients.m │ ├── horn │ │ ├── eplane_sectoral_horn.m │ │ ├── hplane_sectoral_horn.m │ │ └── pyramidal_horn.m │ ├── linear_wire │ │ ├── finite_length_dipole.m │ │ ├── infinitesimal_dipole.m │ │ └── small_dipole.m │ └── loop │ │ ├── circular_loop.m │ │ └── small_loop.m │ ├── detection │ ├── Q.m │ ├── binary_integration.m │ ├── cfar.m │ ├── coherent_integration.m │ ├── non_coherent_integration.m │ ├── pd_gaussian.m │ ├── pd_rayleigh.m │ ├── shnidman.m │ ├── single_pulse_snr.m │ ├── single_pulse_snr_swerling.m │ ├── snr_gain.m │ └── snr_reduction.m │ ├── ecm │ ├── burn_through_range_escort.m │ ├── burn_through_range_selfscreen.m │ ├── crossover_range_escort.m │ ├── crossover_range_selfscreen.m │ └── jammer_to_signal.m │ ├── radar_range │ ├── bistatic_equation │ │ ├── output_snr_bistatic.m │ │ ├── output_snr_polar.m │ │ └── power_at_radar_bistatic.m │ ├── hertzian_dipole │ │ ├── directivity.m │ │ ├── electric_field.m │ │ ├── magnetic_field.m │ │ ├── power_density.m │ │ ├── radiation_intensity.m │ │ └── total_radiated_power.m │ ├── range_equation │ │ ├── loop_gain.m │ │ ├── maximum_range.m │ │ ├── minimum_detectable_signal.m │ │ ├── output_snr.m │ │ ├── power_at_radar.m │ │ └── power_density_radar.m │ └── search_eqaution │ │ ├── output_snr_search.m │ │ └── power_aperture.m │ ├── rcs │ ├── cone.facet │ ├── cylinder_oblique_rcs_2d.m │ ├── cylinder_oblique_rcs_3d.m │ ├── cylinder_rcs_2d.m │ ├── cylinder_rcs_3d.m │ ├── double_ogive.facet │ ├── fdtd.cell │ ├── fdtd.m │ ├── frustum.facet │ ├── plate.facet │ ├── po_scattering.m │ ├── rcs_frustum.m │ ├── read_facet_model.m │ ├── read_fdtd_geometry.m │ ├── rectangular_plate.m │ ├── right_circular_cone.m │ ├── rounded_nose_cone.m │ ├── sphere_coefficients.m │ ├── stratified_sphere.m │ └── strip_rcs.m │ ├── receivers │ ├── cascade_noise_figure.m │ ├── chirp.m │ ├── coherent_detector.m │ ├── envelope_detector.m │ ├── quantization.m │ └── sensitivity_time_control.m │ ├── sar │ ├── backprojection.m │ ├── backprojection_3d.m │ └── backprojection_cv.m │ ├── tracking │ └── kalman.m │ ├── utils │ ├── cosint.m │ ├── cosint_arg.m │ ├── db.m │ ├── ecef_to_lla.m │ ├── fftfreq.m │ ├── fresnel.m │ ├── lin.m │ ├── lla_to_ecef.m │ ├── plot_settings.m │ ├── sinc.m │ ├── sinint.m │ └── sinint_arg.m │ └── wave_propagation │ ├── apparent_elevation.m │ ├── apparent_elevation_approximate.m │ ├── apparent_range.m │ ├── atmospheric_attenuation.m │ ├── brewster_angle.m │ ├── cloud_fog_attenuation.m │ ├── critical_angle.m │ ├── diffraction_attenuation.m │ ├── ducting.m │ ├── oxygen_spectral_attenuation.txt │ ├── plane_wave_parameters.m │ ├── rain_attenuation.m │ ├── reflection_transmission.m │ ├── vegetation_attenuation.m │ └── water_vapor_spectral_attenuation.txt └── pyradar ├── Chapter01 ├── RadarBook.py ├── __init__.py └── ui │ ├── RadarBook_ui.py │ └── __init__.py ├── Chapter02 ├── __init__.py ├── apparent_elevation_example.py ├── apparent_range_example.py ├── atmosphere_example.py ├── beam_spreading_example.py ├── cloud_fog_example.py ├── diffraction_example.py ├── ducting_example.py ├── plane_waves_example.py ├── rain_attenuation_example.py ├── reflection_transmission_example.py ├── ui │ ├── ApparentElevation_ui.py │ ├── ApparentRange_ui.py │ ├── Atmosphere_ui.py │ ├── BeamSpreading_ui.py │ ├── CloudFog_ui.py │ ├── Diffraction_ui.py │ ├── Ducting_ui.py │ ├── PlaneWaves_ui.py │ ├── RainAttenuation_ui.py │ ├── ReflectionTransmission_ui.py │ ├── VegetationAttenuation_ui.py │ └── __init__.py └── vegetation_example.py ├── Chapter03 ├── __init__.py ├── circular_aperture_example.py ├── circular_array_example.py ├── horn_example.py ├── linear_array_example.py ├── linear_wire_example.py ├── loop_example.py ├── planar_array_example.py ├── rectangular_aperture_example.py └── ui │ ├── CircularAperture_ui.py │ ├── CircularArray_ui.py │ ├── Horn_ui.py │ ├── LinearArray_ui.py │ ├── LinearWire_ui.py │ ├── Loop_ui.py │ ├── PlanarArray_ui.py │ ├── RectangularAperture_ui.py │ └── __init__.py ├── Chapter04 ├── __init__.py ├── hertzian_dipole_example.py ├── loop_gain_example.py ├── maximum_detection_range_example.py ├── minimum_detectable_signal_example.py ├── output_signal_to_noise_bistatic_example.py ├── output_signal_to_noise_example.py ├── output_signal_to_noise_search_example.py ├── ovals_of_cassini_example.py ├── power_aperture_example.py ├── power_at_radar_bistatic_example.py ├── power_at_radar_example.py ├── power_density_example.py └── ui │ ├── HertzianDipole_ui.py │ ├── LoopGain_ui.py │ ├── MaximumDetectionRange_ui.py │ ├── MinimumDetectableSignal_ui.py │ ├── OutputSNRBistatic_ui.py │ ├── OutputSNRSearch_ui.py │ ├── OutputSNR_ui.py │ ├── OvalsOfCassini_ui.py │ ├── PowerAperture_ui.py │ ├── PowerAtRadarBistatic_ui.py │ ├── PowerAtRadar_ui.py │ ├── PowerDensity_ui.py │ └── __init__.py ├── Chapter05 ├── __init__.py ├── adc_example.py ├── coherent_detector_example.py ├── envelope_detector_example.py ├── low_pass_filter_example.py ├── noise_figure_example.py ├── resolution_example.py ├── sensitivity_time_control_example.py └── ui │ ├── ADC_ui.py │ ├── BinaryIntegration_ui.py │ ├── CFAR_ui.py │ ├── CoherentDetector_ui.py │ ├── EnvelopeDetector_ui.py │ ├── LowPassFilter_ui.py │ ├── NoiseFigure_ui.py │ ├── Resolution_ui.py │ ├── STC_ui.py │ └── __init__.py ├── Chapter06 ├── __init__.py ├── binary_integration_example.py ├── cfar_example.py ├── coherent_integration_example.py ├── gaussian_noise_pd_example.py ├── non_coherent_integration_example.py ├── optimum_binary_example.py ├── probability_distributions_example.py ├── rayleigh_noise_pd_example.py ├── shnidman_example.py ├── single_pulse_snr_example.py └── ui │ ├── BinaryIntegration_ui.py │ ├── CFAR_ui.py │ ├── CoherentPd_ui.py │ ├── Distributions_ui.py │ ├── GaussianNoisePd_ui.py │ ├── NonCoherentPd_ui.py │ ├── OptimumBinary_ui.py │ ├── RayleighNoisePd_ui.py │ ├── RayleignNoisePd_ui.py │ ├── Shnidman_ui.py │ ├── SinglePulsePd_ui.py │ ├── SinglePulseSNR_ui.py │ └── __init__.py ├── Chapter07 ├── __init__.py ├── fdtd_example.py ├── frustum_example.py ├── infinite_cylinder_example.py ├── infinite_cylinder_oblique_example.py ├── infinite_strip_example.py ├── po_example.py ├── rectangular_plate_example.py ├── right_circular_cone_example.py ├── rounded_nose_cone_example.py ├── stratified_sphere_example.py └── ui │ ├── FDTD_ui.py │ ├── Frustum_ui.py │ ├── InfiniteCylinderOblique_ui.py │ ├── InfiniteCylinder_ui.py │ ├── InfiniteStrip_ui.py │ ├── PO_ui.py │ ├── RectangularPlate_ui.py │ ├── RightCircularCone_ui.py │ ├── RoundedNoseCone_ui.py │ ├── StratifiedSphere_ui.py │ └── __init__.py ├── Chapter08 ├── PRN_ambiguity_example.py ├── __init__.py ├── barker_ambiguity_example.py ├── frank_ambiguity_example.py ├── lfm_pulse_ambiguity_example.py ├── lfm_train_ambiguity_example.py ├── matched_filter_example.py ├── pulse_train_ambiguity_example.py ├── single_pulse_ambiguity_example.py ├── stepped_frequency_example.py ├── stretch_processor_example.py └── ui │ ├── AFSingle_ui.py │ ├── AFTrain_ui.py │ ├── AF_Barker_ui.py │ ├── AF_Frank_ui.py │ ├── AF_LFM_ui.py │ ├── AF_PRN_ui.py │ ├── LFM_Train_ui.py │ ├── MatchedFilter_ui.py │ ├── SteppedFrequency_ui.py │ ├── StretchProcessor_ui.py │ └── __init__.py ├── Chapter09 ├── __init__.py ├── alpha_beta_example.py ├── alpha_beta_gamma_example.py ├── kalman_ca_example.py ├── kalman_cv_example.py ├── kalman_epsilon_example.py ├── kalman_sigma_example.py └── ui │ ├── AlphaBetaGamma_ui.py │ ├── AlphaBeta_ui.py │ ├── KalmanAcceleration_ui.py │ ├── KalmanAdaptiveEpsilon_ui.py │ ├── KalmanAdaptiveSigma_ui.py │ ├── Kalman_ui.py │ └── __init__.py ├── Chapter10 ├── __init__.py ├── back_projection_3d_example.py ├── back_projection_backhoe_example.py ├── back_projection_cv_example.py ├── back_projection_example.py ├── stripmap_cv_example.py ├── stripmap_example.py └── ui │ ├── BackProjection3pt_ui.py │ ├── BackProjectionBH_ui.py │ ├── BackProjectionCV_ui.py │ ├── BackProjection_ui.py │ ├── StripmapCV_ui.py │ ├── Stripmap_ui.py │ └── __init__.py ├── Chapter11 ├── __init__.py ├── burnthrough_range_example.py ├── crossover_range_example.py ├── delay_line_example.py ├── jammer_to_signal_example.py └── ui │ ├── Burnthrough_ui.py │ ├── Crossover_ui.py │ ├── DelayLine_ui.py │ ├── JSR_ui.py │ └── __init__.py ├── Libs ├── __init__.py ├── ambiguity │ ├── __init__.py │ ├── ambiguity_function.py │ ├── frank_code.py │ └── prn_code.py ├── antenna │ ├── __init__.py │ ├── aperture │ │ ├── __init__.py │ │ ├── circular_te11_ground_plane.py │ │ ├── circular_uniform_ground_plane.py │ │ ├── rectangular_te10_ground_plane.py │ │ ├── rectangular_uniform_free_space.py │ │ └── rectangular_uniform_ground_plane.py │ ├── array │ │ ├── __init__.py │ │ ├── circular_uniform.py │ │ ├── linear_array.py │ │ ├── linear_array_un.py │ │ └── planar_uniform.py │ ├── horn │ │ ├── __init__.py │ │ ├── e_plane_sectoral.py │ │ ├── h_plane_sectoral.py │ │ └── pyramidal.py │ ├── linear_wire │ │ ├── __init__.py │ │ ├── finite_length_dipole.py │ │ ├── infinitesimal_dipole.py │ │ └── small_dipole.py │ └── loop │ │ ├── __init__.py │ │ ├── circular_loop.py │ │ └── small_loop.py ├── detection │ ├── __init__.py │ ├── binary_integration.py │ ├── cfar.py │ ├── coherent_integration.py │ ├── non_coherent_integration.py │ ├── shnidman.py │ └── single_pulse.py ├── ecm │ ├── __init__.py │ └── countermeasures.py ├── python_icon.png ├── radar_range │ ├── __init__.py │ ├── bistatic_radar_range.py │ ├── hertzian_dipole.py │ ├── radar_range.py │ └── search_radar_range.py ├── rcs │ ├── __init__.py │ ├── backhoe.facet │ ├── cone.facet │ ├── display_facet_model.py │ ├── double_ogive.facet │ ├── fdtd.cell │ ├── frustum.facet │ ├── frustum.py │ ├── infinite_cylinder.py │ ├── infinite_cylinder_oblique.py │ ├── infinite_strip.py │ ├── ogive.facet │ ├── plate.facet │ ├── rectangular_plate.py │ ├── right_circular_cone.py │ ├── rounded_nose_cone.py │ ├── scattering_matrix.py │ ├── sphere.facet │ └── stratified_sphere.py ├── receivers │ ├── __init__.py │ ├── coherent_detector.py │ ├── envelope_detector.py │ ├── noise_figure.py │ ├── quantization.py │ └── sensitivity_time_control.py ├── resources.qrc ├── resources_rc.py ├── sar │ ├── __init__.py │ └── backprojection.py ├── tracking │ ├── __init__.py │ └── kalman.py ├── utils │ ├── __init__.py │ ├── ecef_to_lla.py │ ├── lla_to_ecef.py │ └── plot_settings.py └── wave_propagation │ ├── __init__.py │ ├── atmosphere.py │ ├── cloud_fog.py │ ├── diffraction.py │ ├── ducting.py │ ├── oxygen_spectral_attenuation.txt │ ├── plane_waves.py │ ├── rain.py │ ├── refraction.py │ ├── vegetation.py │ └── water_vapor_spectral_attenuation.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/.gitignore -------------------------------------------------------------------------------- /docs/AHLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/docs/AHLogo.png -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | radarwithcode.com -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/book_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/docs/book_cover.jpg -------------------------------------------------------------------------------- /docs/book_cover_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/docs/book_cover_small.png -------------------------------------------------------------------------------- /jupyter/Chapter01/jupyter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter01/jupyter.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/apparent_elevation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/apparent_elevation.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/apparent_range.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/apparent_range.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/atmosphere.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/atmosphere.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/beam_spreading.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/beam_spreading.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/cloud_fog.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/cloud_fog.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/diffraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/diffraction.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/ducting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/ducting.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/lib_path.py -------------------------------------------------------------------------------- /jupyter/Chapter02/plane_waves.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/plane_waves.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/rain_attenuation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/rain_attenuation.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/reflection_transmission.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/reflection_transmission.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter02/vegetation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter02/vegetation.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter03/circular_aperture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter03/circular_aperture.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter03/circular_array.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter03/circular_array.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter03/horn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter03/horn.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter03/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter03/lib_path.py -------------------------------------------------------------------------------- /jupyter/Chapter03/linear_array.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter03/linear_array.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter03/linear_wire.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter03/linear_wire.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter03/loop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter03/loop.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter03/planar_array.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter03/planar_array.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter03/rectangular_aperture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter03/rectangular_aperture.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/hertzian_dipole.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/hertzian_dipole.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/lib_path.py -------------------------------------------------------------------------------- /jupyter/Chapter04/loop_gain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/loop_gain.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/maximum_detection_range.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/maximum_detection_range.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/minimum_detectable_signal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/minimum_detectable_signal.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/output_signal_to_noise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/output_signal_to_noise.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/output_signal_to_noise_bistatic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/output_signal_to_noise_bistatic.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/output_signal_to_noise_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/output_signal_to_noise_search.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/ovals_of_cassini.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/ovals_of_cassini.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/power_aperture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/power_aperture.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/power_at_radar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/power_at_radar.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/power_at_radar_bistatic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/power_at_radar_bistatic.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter04/power_density.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter04/power_density.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter05/adc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter05/adc.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter05/coherent_detector.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter05/coherent_detector.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter05/envelope_detector.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter05/envelope_detector.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter05/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter05/lib_path.py -------------------------------------------------------------------------------- /jupyter/Chapter05/low_pass_filter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter05/low_pass_filter.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter05/noise_figure.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter05/noise_figure.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter05/resolution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter05/resolution.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter05/sensitivity_time_control.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter05/sensitivity_time_control.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/binary_integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/binary_integration.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/cfar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/cfar.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/coherent_integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/coherent_integration.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/gaussian_noise_pd.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/gaussian_noise_pd.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/lib_path.py -------------------------------------------------------------------------------- /jupyter/Chapter06/non_coherent_integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/non_coherent_integration.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/optimum_binary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/optimum_binary.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/probability_distributions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/probability_distributions.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/rayleigh_noise_pd.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/rayleigh_noise_pd.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/shnidman_approximation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/shnidman_approximation.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter06/single_pulse_snr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter06/single_pulse_snr.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter07/frustum.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter07/frustum.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter07/infinite_cylinder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter07/infinite_cylinder.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter07/infinite_cylinder_oblique.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter07/infinite_cylinder_oblique.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter07/infinite_strip.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter07/infinite_strip.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter07/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter07/lib_path.py -------------------------------------------------------------------------------- /jupyter/Chapter07/rectangular_plate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter07/rectangular_plate.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter07/right_circular_cone.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter07/right_circular_cone.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter07/rounded_nose_cone.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter07/rounded_nose_cone.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter07/stratified_sphere.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter07/stratified_sphere.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/barker_ambiguity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/barker_ambiguity.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/frank_ambiguity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/frank_ambiguity.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/lfm_pulse_ambiguity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/lfm_pulse_ambiguity.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/lfm_train_ambiguity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/lfm_train_ambiguity.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/lib_path.py -------------------------------------------------------------------------------- /jupyter/Chapter08/matched_filter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/matched_filter.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/prn_ambiguity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/prn_ambiguity.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/pulse_train_ambiguity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/pulse_train_ambiguity.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/single_pulse_ambiguity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/single_pulse_ambiguity.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/stepped_frequency.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/stepped_frequency.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter08/stretch_processor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter08/stretch_processor.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter09/alpha_beta.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter09/alpha_beta.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter09/alpha_beta_gamma.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter09/alpha_beta_gamma.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter09/kalman_constant_acceleration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter09/kalman_constant_acceleration.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter09/kalman_constant_velocity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter09/kalman_constant_velocity.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter09/kalman_epsilon.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter09/kalman_epsilon.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter09/kalman_sigma.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter09/kalman_sigma.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter09/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter09/lib_path.py -------------------------------------------------------------------------------- /jupyter/Chapter10/back_projection_2d.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter10/back_projection_2d.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter10/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter10/lib_path.py -------------------------------------------------------------------------------- /jupyter/Chapter10/stripmap_2d.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter10/stripmap_2d.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter11/burn_through_range.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter11/burn_through_range.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter11/crossover_range.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter11/crossover_range.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter11/delay_line.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter11/delay_line.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter11/jammer_to_signal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter11/jammer_to_signal.ipynb -------------------------------------------------------------------------------- /jupyter/Chapter11/lib_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/jupyter/Chapter11/lib_path.py -------------------------------------------------------------------------------- /mlradar/Chapter01/initial_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter01/initial_test.m -------------------------------------------------------------------------------- /mlradar/Chapter02/apparent_elevation_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/apparent_elevation_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/apparent_range_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/apparent_range_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/atmosphere_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/atmosphere_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/beam_spreading_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/beam_spreading_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/cloud_fog_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/cloud_fog_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/diffraction_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/diffraction_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/ducting_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/ducting_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/plane_waves_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/plane_waves_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/rain_attenuation_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/rain_attenuation_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/reflection_transmission_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/reflection_transmission_example.m -------------------------------------------------------------------------------- /mlradar/Chapter02/vegetation_attenuation_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter02/vegetation_attenuation_example.m -------------------------------------------------------------------------------- /mlradar/Chapter03/circular_aperture_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter03/circular_aperture_example.m -------------------------------------------------------------------------------- /mlradar/Chapter03/circular_array_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter03/circular_array_example.m -------------------------------------------------------------------------------- /mlradar/Chapter03/horn_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter03/horn_example.m -------------------------------------------------------------------------------- /mlradar/Chapter03/linear_array_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter03/linear_array_example.m -------------------------------------------------------------------------------- /mlradar/Chapter03/linear_wire_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter03/linear_wire_example.m -------------------------------------------------------------------------------- /mlradar/Chapter03/loop_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter03/loop_example.m -------------------------------------------------------------------------------- /mlradar/Chapter03/planar_array_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter03/planar_array_example.m -------------------------------------------------------------------------------- /mlradar/Chapter03/rectangular_aperture_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter03/rectangular_aperture_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/hertzian_dipole_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/hertzian_dipole_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/loop_gain_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/loop_gain_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/maximum_detection_range_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/maximum_detection_range_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/minimum_detectable_signal_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/minimum_detectable_signal_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/ouput_signal_to_noise_bistatic_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/ouput_signal_to_noise_bistatic_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/output_signal_to_noise_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/output_signal_to_noise_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/output_signal_to_noise_search_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/output_signal_to_noise_search_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/ovals_of_cassini_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/ovals_of_cassini_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/power_aperture_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/power_aperture_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/power_at_radar_bistatic_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/power_at_radar_bistatic_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/power_at_radar_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/power_at_radar_example.m -------------------------------------------------------------------------------- /mlradar/Chapter04/power_density_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter04/power_density_example.m -------------------------------------------------------------------------------- /mlradar/Chapter05/adc_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter05/adc_example.m -------------------------------------------------------------------------------- /mlradar/Chapter05/coherent_detector_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter05/coherent_detector_example.m -------------------------------------------------------------------------------- /mlradar/Chapter05/envelope_detector_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter05/envelope_detector_example.m -------------------------------------------------------------------------------- /mlradar/Chapter05/low_pass_filter_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter05/low_pass_filter_example.m -------------------------------------------------------------------------------- /mlradar/Chapter05/noise_figure_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter05/noise_figure_example.m -------------------------------------------------------------------------------- /mlradar/Chapter05/resolution_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter05/resolution_example.m -------------------------------------------------------------------------------- /mlradar/Chapter05/sensitivity_time_control_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter05/sensitivity_time_control_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/binary_integration_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/binary_integration_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/cfar_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/cfar_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/coherent_integration_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/coherent_integration_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/gaussian_noise_pd_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/gaussian_noise_pd_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/non_coherent_integration_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/non_coherent_integration_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/optimum_binary_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/optimum_binary_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/probability_distributions_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/probability_distributions_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/rayleigh_noise_pd_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/rayleigh_noise_pd_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/shnidman_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/shnidman_example.m -------------------------------------------------------------------------------- /mlradar/Chapter06/single_pulse_snr_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter06/single_pulse_snr_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/fdtd_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/fdtd_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/frustum_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/frustum_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/infinite_cylinder_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/infinite_cylinder_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/infinite_cylinder_oblique_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/infinite_cylinder_oblique_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/infinite_strip_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/infinite_strip_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/po_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/po_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/rectangular_plate_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/rectangular_plate_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/right_circular_cone_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/right_circular_cone_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/rounded_nose_cone_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/rounded_nose_cone_example.m -------------------------------------------------------------------------------- /mlradar/Chapter07/stratified_sphere_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter07/stratified_sphere_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/PRN_ambiguity_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/PRN_ambiguity_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/barker_ambiguity_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/barker_ambiguity_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/frank_ambiguity_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/frank_ambiguity_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/lfm_pulse_ambiguity_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/lfm_pulse_ambiguity_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/lfm_train_ambiguity_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/lfm_train_ambiguity_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/matched_filter_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/matched_filter_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/pulse_train_ambiguity_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/pulse_train_ambiguity_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/single_pulse_ambiguity_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/single_pulse_ambiguity_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/stepped_frequency_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/stepped_frequency_example.m -------------------------------------------------------------------------------- /mlradar/Chapter08/stretch_processor_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter08/stretch_processor_example.m -------------------------------------------------------------------------------- /mlradar/Chapter09/alpha_beta_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter09/alpha_beta_example.m -------------------------------------------------------------------------------- /mlradar/Chapter09/alpha_beta_gamma_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter09/alpha_beta_gamma_example.m -------------------------------------------------------------------------------- /mlradar/Chapter09/kalman_ca_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter09/kalman_ca_example.m -------------------------------------------------------------------------------- /mlradar/Chapter09/kalman_cv_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter09/kalman_cv_example.m -------------------------------------------------------------------------------- /mlradar/Chapter09/kalman_epsilon_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter09/kalman_epsilon_example.m -------------------------------------------------------------------------------- /mlradar/Chapter09/kalman_sigma_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter09/kalman_sigma_example.m -------------------------------------------------------------------------------- /mlradar/Chapter10/back_projection_3d_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter10/back_projection_3d_example.m -------------------------------------------------------------------------------- /mlradar/Chapter10/back_projection_backhoe_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter10/back_projection_backhoe_example.m -------------------------------------------------------------------------------- /mlradar/Chapter10/back_projection_cv_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter10/back_projection_cv_example.m -------------------------------------------------------------------------------- /mlradar/Chapter10/back_projection_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter10/back_projection_example.m -------------------------------------------------------------------------------- /mlradar/Chapter10/stripmap_cv_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter10/stripmap_cv_example.m -------------------------------------------------------------------------------- /mlradar/Chapter10/stripmap_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter10/stripmap_example.m -------------------------------------------------------------------------------- /mlradar/Chapter11/burn_through_range_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter11/burn_through_range_example.m -------------------------------------------------------------------------------- /mlradar/Chapter11/crossover_range_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter11/crossover_range_example.m -------------------------------------------------------------------------------- /mlradar/Chapter11/delay_line_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter11/delay_line_example.m -------------------------------------------------------------------------------- /mlradar/Chapter11/jammer_to_signal_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/Chapter11/jammer_to_signal_example.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/hamming.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/hamming.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/hanning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/hanning.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/kaiser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/kaiser.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/lfm_pulse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/lfm_pulse.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/lfm_train.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/lfm_train.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/mls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/mls.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/n_phase_code.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/n_phase_code.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/phase_coded_waveform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/phase_coded_waveform.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/pulse_train.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/pulse_train.m -------------------------------------------------------------------------------- /mlradar/libs/ambiguity/single_pulse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ambiguity/single_pulse.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/aperture/circular_te11_ground_plane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/aperture/circular_te11_ground_plane.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/aperture/circular_uniform_ground_plane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/aperture/circular_uniform_ground_plane.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/aperture/rectangular_te10_ground_plane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/aperture/rectangular_te10_ground_plane.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/aperture/rectangular_uniform_free_space.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/aperture/rectangular_uniform_free_space.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/aperture/rectangular_uniform_ground_plane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/aperture/rectangular_uniform_ground_plane.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/array/circular_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/array/circular_array.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/array/linear_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/array/linear_array.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/array/planar_array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/array/planar_array.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/array/tschebyscheff_coefficients.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/array/tschebyscheff_coefficients.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/horn/eplane_sectoral_horn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/horn/eplane_sectoral_horn.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/horn/hplane_sectoral_horn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/horn/hplane_sectoral_horn.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/horn/pyramidal_horn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/horn/pyramidal_horn.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/linear_wire/finite_length_dipole.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/linear_wire/finite_length_dipole.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/linear_wire/infinitesimal_dipole.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/linear_wire/infinitesimal_dipole.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/linear_wire/small_dipole.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/linear_wire/small_dipole.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/loop/circular_loop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/loop/circular_loop.m -------------------------------------------------------------------------------- /mlradar/libs/antennas/loop/small_loop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/antennas/loop/small_loop.m -------------------------------------------------------------------------------- /mlradar/libs/detection/Q.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/Q.m -------------------------------------------------------------------------------- /mlradar/libs/detection/binary_integration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/binary_integration.m -------------------------------------------------------------------------------- /mlradar/libs/detection/cfar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/cfar.m -------------------------------------------------------------------------------- /mlradar/libs/detection/coherent_integration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/coherent_integration.m -------------------------------------------------------------------------------- /mlradar/libs/detection/non_coherent_integration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/non_coherent_integration.m -------------------------------------------------------------------------------- /mlradar/libs/detection/pd_gaussian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/pd_gaussian.m -------------------------------------------------------------------------------- /mlradar/libs/detection/pd_rayleigh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/pd_rayleigh.m -------------------------------------------------------------------------------- /mlradar/libs/detection/shnidman.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/shnidman.m -------------------------------------------------------------------------------- /mlradar/libs/detection/single_pulse_snr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/single_pulse_snr.m -------------------------------------------------------------------------------- /mlradar/libs/detection/single_pulse_snr_swerling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/single_pulse_snr_swerling.m -------------------------------------------------------------------------------- /mlradar/libs/detection/snr_gain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/snr_gain.m -------------------------------------------------------------------------------- /mlradar/libs/detection/snr_reduction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/detection/snr_reduction.m -------------------------------------------------------------------------------- /mlradar/libs/ecm/burn_through_range_escort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ecm/burn_through_range_escort.m -------------------------------------------------------------------------------- /mlradar/libs/ecm/burn_through_range_selfscreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ecm/burn_through_range_selfscreen.m -------------------------------------------------------------------------------- /mlradar/libs/ecm/crossover_range_escort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ecm/crossover_range_escort.m -------------------------------------------------------------------------------- /mlradar/libs/ecm/crossover_range_selfscreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ecm/crossover_range_selfscreen.m -------------------------------------------------------------------------------- /mlradar/libs/ecm/jammer_to_signal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/ecm/jammer_to_signal.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/bistatic_equation/output_snr_bistatic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/bistatic_equation/output_snr_bistatic.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/bistatic_equation/output_snr_polar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/bistatic_equation/output_snr_polar.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/bistatic_equation/power_at_radar_bistatic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/bistatic_equation/power_at_radar_bistatic.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/hertzian_dipole/directivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/hertzian_dipole/directivity.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/hertzian_dipole/electric_field.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/hertzian_dipole/electric_field.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/hertzian_dipole/magnetic_field.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/hertzian_dipole/magnetic_field.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/hertzian_dipole/power_density.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/hertzian_dipole/power_density.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/hertzian_dipole/radiation_intensity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/hertzian_dipole/radiation_intensity.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/hertzian_dipole/total_radiated_power.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/hertzian_dipole/total_radiated_power.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/range_equation/loop_gain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/range_equation/loop_gain.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/range_equation/maximum_range.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/range_equation/maximum_range.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/range_equation/minimum_detectable_signal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/range_equation/minimum_detectable_signal.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/range_equation/output_snr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/range_equation/output_snr.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/range_equation/power_at_radar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/range_equation/power_at_radar.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/range_equation/power_density_radar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/range_equation/power_density_radar.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/search_eqaution/output_snr_search.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/search_eqaution/output_snr_search.m -------------------------------------------------------------------------------- /mlradar/libs/radar_range/search_eqaution/power_aperture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/radar_range/search_eqaution/power_aperture.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/cone.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/cone.facet -------------------------------------------------------------------------------- /mlradar/libs/rcs/cylinder_oblique_rcs_2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/cylinder_oblique_rcs_2d.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/cylinder_oblique_rcs_3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/cylinder_oblique_rcs_3d.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/cylinder_rcs_2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/cylinder_rcs_2d.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/cylinder_rcs_3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/cylinder_rcs_3d.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/double_ogive.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/double_ogive.facet -------------------------------------------------------------------------------- /mlradar/libs/rcs/fdtd.cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/fdtd.cell -------------------------------------------------------------------------------- /mlradar/libs/rcs/fdtd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/fdtd.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/frustum.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/frustum.facet -------------------------------------------------------------------------------- /mlradar/libs/rcs/plate.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/plate.facet -------------------------------------------------------------------------------- /mlradar/libs/rcs/po_scattering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/po_scattering.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/rcs_frustum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/rcs_frustum.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/read_facet_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/read_facet_model.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/read_fdtd_geometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/read_fdtd_geometry.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/rectangular_plate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/rectangular_plate.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/right_circular_cone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/right_circular_cone.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/rounded_nose_cone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/rounded_nose_cone.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/sphere_coefficients.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/sphere_coefficients.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/stratified_sphere.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/stratified_sphere.m -------------------------------------------------------------------------------- /mlradar/libs/rcs/strip_rcs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/rcs/strip_rcs.m -------------------------------------------------------------------------------- /mlradar/libs/receivers/cascade_noise_figure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/receivers/cascade_noise_figure.m -------------------------------------------------------------------------------- /mlradar/libs/receivers/chirp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/receivers/chirp.m -------------------------------------------------------------------------------- /mlradar/libs/receivers/coherent_detector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/receivers/coherent_detector.m -------------------------------------------------------------------------------- /mlradar/libs/receivers/envelope_detector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/receivers/envelope_detector.m -------------------------------------------------------------------------------- /mlradar/libs/receivers/quantization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/receivers/quantization.m -------------------------------------------------------------------------------- /mlradar/libs/receivers/sensitivity_time_control.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/receivers/sensitivity_time_control.m -------------------------------------------------------------------------------- /mlradar/libs/sar/backprojection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/sar/backprojection.m -------------------------------------------------------------------------------- /mlradar/libs/sar/backprojection_3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/sar/backprojection_3d.m -------------------------------------------------------------------------------- /mlradar/libs/sar/backprojection_cv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/sar/backprojection_cv.m -------------------------------------------------------------------------------- /mlradar/libs/tracking/kalman.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/tracking/kalman.m -------------------------------------------------------------------------------- /mlradar/libs/utils/cosint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/cosint.m -------------------------------------------------------------------------------- /mlradar/libs/utils/cosint_arg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/cosint_arg.m -------------------------------------------------------------------------------- /mlradar/libs/utils/db.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/db.m -------------------------------------------------------------------------------- /mlradar/libs/utils/ecef_to_lla.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/ecef_to_lla.m -------------------------------------------------------------------------------- /mlradar/libs/utils/fftfreq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/fftfreq.m -------------------------------------------------------------------------------- /mlradar/libs/utils/fresnel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/fresnel.m -------------------------------------------------------------------------------- /mlradar/libs/utils/lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/lin.m -------------------------------------------------------------------------------- /mlradar/libs/utils/lla_to_ecef.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/lla_to_ecef.m -------------------------------------------------------------------------------- /mlradar/libs/utils/plot_settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/plot_settings.m -------------------------------------------------------------------------------- /mlradar/libs/utils/sinc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/sinc.m -------------------------------------------------------------------------------- /mlradar/libs/utils/sinint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/sinint.m -------------------------------------------------------------------------------- /mlradar/libs/utils/sinint_arg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/utils/sinint_arg.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/apparent_elevation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/apparent_elevation.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/apparent_elevation_approximate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/apparent_elevation_approximate.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/apparent_range.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/apparent_range.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/atmospheric_attenuation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/atmospheric_attenuation.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/brewster_angle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/brewster_angle.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/cloud_fog_attenuation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/cloud_fog_attenuation.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/critical_angle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/critical_angle.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/diffraction_attenuation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/diffraction_attenuation.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/ducting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/ducting.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/oxygen_spectral_attenuation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/oxygen_spectral_attenuation.txt -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/plane_wave_parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/plane_wave_parameters.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/rain_attenuation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/rain_attenuation.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/reflection_transmission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/reflection_transmission.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/vegetation_attenuation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/vegetation_attenuation.m -------------------------------------------------------------------------------- /mlradar/libs/wave_propagation/water_vapor_spectral_attenuation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/mlradar/libs/wave_propagation/water_vapor_spectral_attenuation.txt -------------------------------------------------------------------------------- /pyradar/Chapter01/RadarBook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter01/RadarBook.py -------------------------------------------------------------------------------- /pyradar/Chapter01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter01/ui/RadarBook_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter01/ui/RadarBook_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter01/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter02/apparent_elevation_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/apparent_elevation_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/apparent_range_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/apparent_range_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/atmosphere_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/atmosphere_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/beam_spreading_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/beam_spreading_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/cloud_fog_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/cloud_fog_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/diffraction_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/diffraction_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ducting_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ducting_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/plane_waves_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/plane_waves_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/rain_attenuation_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/rain_attenuation_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/reflection_transmission_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/reflection_transmission_example.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/ApparentElevation_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/ApparentElevation_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/ApparentRange_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/ApparentRange_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/Atmosphere_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/Atmosphere_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/BeamSpreading_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/BeamSpreading_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/CloudFog_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/CloudFog_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/Diffraction_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/Diffraction_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/Ducting_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/Ducting_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/PlaneWaves_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/PlaneWaves_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/RainAttenuation_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/RainAttenuation_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/ReflectionTransmission_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/ReflectionTransmission_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/VegetationAttenuation_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/ui/VegetationAttenuation_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter02/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter02/vegetation_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter02/vegetation_example.py -------------------------------------------------------------------------------- /pyradar/Chapter03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter03/circular_aperture_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/circular_aperture_example.py -------------------------------------------------------------------------------- /pyradar/Chapter03/circular_array_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/circular_array_example.py -------------------------------------------------------------------------------- /pyradar/Chapter03/horn_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/horn_example.py -------------------------------------------------------------------------------- /pyradar/Chapter03/linear_array_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/linear_array_example.py -------------------------------------------------------------------------------- /pyradar/Chapter03/linear_wire_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/linear_wire_example.py -------------------------------------------------------------------------------- /pyradar/Chapter03/loop_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/loop_example.py -------------------------------------------------------------------------------- /pyradar/Chapter03/planar_array_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/planar_array_example.py -------------------------------------------------------------------------------- /pyradar/Chapter03/rectangular_aperture_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/rectangular_aperture_example.py -------------------------------------------------------------------------------- /pyradar/Chapter03/ui/CircularAperture_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/ui/CircularAperture_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter03/ui/CircularArray_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/ui/CircularArray_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter03/ui/Horn_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/ui/Horn_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter03/ui/LinearArray_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/ui/LinearArray_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter03/ui/LinearWire_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/ui/LinearWire_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter03/ui/Loop_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/ui/Loop_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter03/ui/PlanarArray_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/ui/PlanarArray_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter03/ui/RectangularAperture_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter03/ui/RectangularAperture_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter03/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter04/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter04/hertzian_dipole_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/hertzian_dipole_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/loop_gain_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/loop_gain_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/maximum_detection_range_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/maximum_detection_range_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/minimum_detectable_signal_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/minimum_detectable_signal_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/output_signal_to_noise_bistatic_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/output_signal_to_noise_bistatic_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/output_signal_to_noise_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/output_signal_to_noise_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/output_signal_to_noise_search_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/output_signal_to_noise_search_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ovals_of_cassini_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ovals_of_cassini_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/power_aperture_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/power_aperture_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/power_at_radar_bistatic_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/power_at_radar_bistatic_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/power_at_radar_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/power_at_radar_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/power_density_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/power_density_example.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/HertzianDipole_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/HertzianDipole_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/LoopGain_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/LoopGain_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/MaximumDetectionRange_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/MaximumDetectionRange_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/MinimumDetectableSignal_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/MinimumDetectableSignal_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/OutputSNRBistatic_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/OutputSNRBistatic_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/OutputSNRSearch_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/OutputSNRSearch_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/OutputSNR_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/OutputSNR_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/OvalsOfCassini_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/OvalsOfCassini_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/PowerAperture_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/PowerAperture_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/PowerAtRadarBistatic_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/PowerAtRadarBistatic_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/PowerAtRadar_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/PowerAtRadar_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/PowerDensity_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter04/ui/PowerDensity_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter04/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter05/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter05/adc_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/adc_example.py -------------------------------------------------------------------------------- /pyradar/Chapter05/coherent_detector_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/coherent_detector_example.py -------------------------------------------------------------------------------- /pyradar/Chapter05/envelope_detector_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/envelope_detector_example.py -------------------------------------------------------------------------------- /pyradar/Chapter05/low_pass_filter_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/low_pass_filter_example.py -------------------------------------------------------------------------------- /pyradar/Chapter05/noise_figure_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/noise_figure_example.py -------------------------------------------------------------------------------- /pyradar/Chapter05/resolution_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/resolution_example.py -------------------------------------------------------------------------------- /pyradar/Chapter05/sensitivity_time_control_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/sensitivity_time_control_example.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/ADC_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/ui/ADC_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/BinaryIntegration_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/ui/BinaryIntegration_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/CFAR_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/ui/CFAR_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/CoherentDetector_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/ui/CoherentDetector_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/EnvelopeDetector_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/ui/EnvelopeDetector_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/LowPassFilter_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/ui/LowPassFilter_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/NoiseFigure_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/ui/NoiseFigure_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/Resolution_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/ui/Resolution_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/STC_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter05/ui/STC_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter05/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter06/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter06/binary_integration_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/binary_integration_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/cfar_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/cfar_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/coherent_integration_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/coherent_integration_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/gaussian_noise_pd_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/gaussian_noise_pd_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/non_coherent_integration_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/non_coherent_integration_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/optimum_binary_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/optimum_binary_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/probability_distributions_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/probability_distributions_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/rayleigh_noise_pd_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/rayleigh_noise_pd_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/shnidman_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/shnidman_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/single_pulse_snr_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/single_pulse_snr_example.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/BinaryIntegration_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/BinaryIntegration_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/CFAR_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/CFAR_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/CoherentPd_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/CoherentPd_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/Distributions_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/Distributions_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/GaussianNoisePd_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/GaussianNoisePd_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/NonCoherentPd_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/NonCoherentPd_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/OptimumBinary_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/OptimumBinary_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/RayleighNoisePd_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/RayleighNoisePd_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/RayleignNoisePd_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/RayleignNoisePd_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/Shnidman_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/Shnidman_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/SinglePulsePd_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/SinglePulsePd_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/SinglePulseSNR_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter06/ui/SinglePulseSNR_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter06/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter07/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter07/fdtd_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/fdtd_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/frustum_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/frustum_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/infinite_cylinder_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/infinite_cylinder_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/infinite_cylinder_oblique_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/infinite_cylinder_oblique_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/infinite_strip_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/infinite_strip_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/po_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/po_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/rectangular_plate_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/rectangular_plate_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/right_circular_cone_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/right_circular_cone_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/rounded_nose_cone_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/rounded_nose_cone_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/stratified_sphere_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/stratified_sphere_example.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/FDTD_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/FDTD_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/Frustum_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/Frustum_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/InfiniteCylinderOblique_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/InfiniteCylinderOblique_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/InfiniteCylinder_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/InfiniteCylinder_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/InfiniteStrip_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/InfiniteStrip_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/PO_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/PO_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/RectangularPlate_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/RectangularPlate_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/RightCircularCone_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/RightCircularCone_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/RoundedNoseCone_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/RoundedNoseCone_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/StratifiedSphere_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter07/ui/StratifiedSphere_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter07/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter08/PRN_ambiguity_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/PRN_ambiguity_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter08/barker_ambiguity_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/barker_ambiguity_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/frank_ambiguity_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/frank_ambiguity_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/lfm_pulse_ambiguity_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/lfm_pulse_ambiguity_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/lfm_train_ambiguity_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/lfm_train_ambiguity_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/matched_filter_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/matched_filter_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/pulse_train_ambiguity_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/pulse_train_ambiguity_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/single_pulse_ambiguity_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/single_pulse_ambiguity_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/stepped_frequency_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/stepped_frequency_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/stretch_processor_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/stretch_processor_example.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/AFSingle_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/AFSingle_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/AFTrain_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/AFTrain_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/AF_Barker_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/AF_Barker_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/AF_Frank_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/AF_Frank_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/AF_LFM_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/AF_LFM_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/AF_PRN_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/AF_PRN_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/LFM_Train_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/LFM_Train_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/MatchedFilter_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/MatchedFilter_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/SteppedFrequency_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/SteppedFrequency_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/StretchProcessor_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter08/ui/StretchProcessor_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter08/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter09/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter09/alpha_beta_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/alpha_beta_example.py -------------------------------------------------------------------------------- /pyradar/Chapter09/alpha_beta_gamma_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/alpha_beta_gamma_example.py -------------------------------------------------------------------------------- /pyradar/Chapter09/kalman_ca_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/kalman_ca_example.py -------------------------------------------------------------------------------- /pyradar/Chapter09/kalman_cv_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/kalman_cv_example.py -------------------------------------------------------------------------------- /pyradar/Chapter09/kalman_epsilon_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/kalman_epsilon_example.py -------------------------------------------------------------------------------- /pyradar/Chapter09/kalman_sigma_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/kalman_sigma_example.py -------------------------------------------------------------------------------- /pyradar/Chapter09/ui/AlphaBetaGamma_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/ui/AlphaBetaGamma_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter09/ui/AlphaBeta_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/ui/AlphaBeta_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter09/ui/KalmanAcceleration_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/ui/KalmanAcceleration_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter09/ui/KalmanAdaptiveEpsilon_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/ui/KalmanAdaptiveEpsilon_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter09/ui/KalmanAdaptiveSigma_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/ui/KalmanAdaptiveSigma_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter09/ui/Kalman_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter09/ui/Kalman_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter09/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/__init__.py -------------------------------------------------------------------------------- /pyradar/Chapter10/back_projection_3d_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/back_projection_3d_example.py -------------------------------------------------------------------------------- /pyradar/Chapter10/back_projection_backhoe_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/back_projection_backhoe_example.py -------------------------------------------------------------------------------- /pyradar/Chapter10/back_projection_cv_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/back_projection_cv_example.py -------------------------------------------------------------------------------- /pyradar/Chapter10/back_projection_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/back_projection_example.py -------------------------------------------------------------------------------- /pyradar/Chapter10/stripmap_cv_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/stripmap_cv_example.py -------------------------------------------------------------------------------- /pyradar/Chapter10/stripmap_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/stripmap_example.py -------------------------------------------------------------------------------- /pyradar/Chapter10/ui/BackProjection3pt_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/ui/BackProjection3pt_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter10/ui/BackProjectionBH_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/ui/BackProjectionBH_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter10/ui/BackProjectionCV_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/ui/BackProjectionCV_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter10/ui/BackProjection_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/ui/BackProjection_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter10/ui/StripmapCV_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/ui/StripmapCV_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter10/ui/Stripmap_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/ui/Stripmap_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter10/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter10/ui/__init__.py -------------------------------------------------------------------------------- /pyradar/Chapter11/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Chapter11/burnthrough_range_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter11/burnthrough_range_example.py -------------------------------------------------------------------------------- /pyradar/Chapter11/crossover_range_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter11/crossover_range_example.py -------------------------------------------------------------------------------- /pyradar/Chapter11/delay_line_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter11/delay_line_example.py -------------------------------------------------------------------------------- /pyradar/Chapter11/jammer_to_signal_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter11/jammer_to_signal_example.py -------------------------------------------------------------------------------- /pyradar/Chapter11/ui/Burnthrough_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter11/ui/Burnthrough_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter11/ui/Crossover_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter11/ui/Crossover_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter11/ui/DelayLine_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter11/ui/DelayLine_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter11/ui/JSR_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Chapter11/ui/JSR_ui.py -------------------------------------------------------------------------------- /pyradar/Chapter11/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/ambiguity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/ambiguity/ambiguity_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/ambiguity/ambiguity_function.py -------------------------------------------------------------------------------- /pyradar/Libs/ambiguity/frank_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/ambiguity/frank_code.py -------------------------------------------------------------------------------- /pyradar/Libs/ambiguity/prn_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/ambiguity/prn_code.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/__init__.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/aperture/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/antenna/aperture/circular_te11_ground_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/aperture/circular_te11_ground_plane.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/aperture/circular_uniform_ground_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/aperture/circular_uniform_ground_plane.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/aperture/rectangular_te10_ground_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/aperture/rectangular_te10_ground_plane.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/aperture/rectangular_uniform_free_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/aperture/rectangular_uniform_free_space.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/aperture/rectangular_uniform_ground_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/aperture/rectangular_uniform_ground_plane.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/array/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/antenna/array/circular_uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/array/circular_uniform.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/array/linear_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/array/linear_array.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/array/linear_array_un.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/array/linear_array_un.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/array/planar_uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/array/planar_uniform.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/horn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/antenna/horn/e_plane_sectoral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/horn/e_plane_sectoral.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/horn/h_plane_sectoral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/horn/h_plane_sectoral.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/horn/pyramidal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/horn/pyramidal.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/linear_wire/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/antenna/linear_wire/finite_length_dipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/linear_wire/finite_length_dipole.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/linear_wire/infinitesimal_dipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/linear_wire/infinitesimal_dipole.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/linear_wire/small_dipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/linear_wire/small_dipole.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/loop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/antenna/loop/circular_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/loop/circular_loop.py -------------------------------------------------------------------------------- /pyradar/Libs/antenna/loop/small_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/antenna/loop/small_loop.py -------------------------------------------------------------------------------- /pyradar/Libs/detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/detection/binary_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/detection/binary_integration.py -------------------------------------------------------------------------------- /pyradar/Libs/detection/cfar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/detection/cfar.py -------------------------------------------------------------------------------- /pyradar/Libs/detection/coherent_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/detection/coherent_integration.py -------------------------------------------------------------------------------- /pyradar/Libs/detection/non_coherent_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/detection/non_coherent_integration.py -------------------------------------------------------------------------------- /pyradar/Libs/detection/shnidman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/detection/shnidman.py -------------------------------------------------------------------------------- /pyradar/Libs/detection/single_pulse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/detection/single_pulse.py -------------------------------------------------------------------------------- /pyradar/Libs/ecm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/ecm/countermeasures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/ecm/countermeasures.py -------------------------------------------------------------------------------- /pyradar/Libs/python_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/python_icon.png -------------------------------------------------------------------------------- /pyradar/Libs/radar_range/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/radar_range/bistatic_radar_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/radar_range/bistatic_radar_range.py -------------------------------------------------------------------------------- /pyradar/Libs/radar_range/hertzian_dipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/radar_range/hertzian_dipole.py -------------------------------------------------------------------------------- /pyradar/Libs/radar_range/radar_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/radar_range/radar_range.py -------------------------------------------------------------------------------- /pyradar/Libs/radar_range/search_radar_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/radar_range/search_radar_range.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/rcs/backhoe.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/backhoe.facet -------------------------------------------------------------------------------- /pyradar/Libs/rcs/cone.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/cone.facet -------------------------------------------------------------------------------- /pyradar/Libs/rcs/display_facet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/display_facet_model.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/double_ogive.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/double_ogive.facet -------------------------------------------------------------------------------- /pyradar/Libs/rcs/fdtd.cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/fdtd.cell -------------------------------------------------------------------------------- /pyradar/Libs/rcs/frustum.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/frustum.facet -------------------------------------------------------------------------------- /pyradar/Libs/rcs/frustum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/frustum.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/infinite_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/infinite_cylinder.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/infinite_cylinder_oblique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/infinite_cylinder_oblique.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/infinite_strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/infinite_strip.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/ogive.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/ogive.facet -------------------------------------------------------------------------------- /pyradar/Libs/rcs/plate.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/plate.facet -------------------------------------------------------------------------------- /pyradar/Libs/rcs/rectangular_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/rectangular_plate.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/right_circular_cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/right_circular_cone.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/rounded_nose_cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/rounded_nose_cone.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/scattering_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/scattering_matrix.py -------------------------------------------------------------------------------- /pyradar/Libs/rcs/sphere.facet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/sphere.facet -------------------------------------------------------------------------------- /pyradar/Libs/rcs/stratified_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/rcs/stratified_sphere.py -------------------------------------------------------------------------------- /pyradar/Libs/receivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/receivers/coherent_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/receivers/coherent_detector.py -------------------------------------------------------------------------------- /pyradar/Libs/receivers/envelope_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/receivers/envelope_detector.py -------------------------------------------------------------------------------- /pyradar/Libs/receivers/noise_figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/receivers/noise_figure.py -------------------------------------------------------------------------------- /pyradar/Libs/receivers/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/receivers/quantization.py -------------------------------------------------------------------------------- /pyradar/Libs/receivers/sensitivity_time_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/receivers/sensitivity_time_control.py -------------------------------------------------------------------------------- /pyradar/Libs/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/resources.qrc -------------------------------------------------------------------------------- /pyradar/Libs/resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/resources_rc.py -------------------------------------------------------------------------------- /pyradar/Libs/sar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/sar/__init__.py -------------------------------------------------------------------------------- /pyradar/Libs/sar/backprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/sar/backprojection.py -------------------------------------------------------------------------------- /pyradar/Libs/tracking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/tracking/__init__.py -------------------------------------------------------------------------------- /pyradar/Libs/tracking/kalman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/tracking/kalman.py -------------------------------------------------------------------------------- /pyradar/Libs/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/utils/ecef_to_lla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/utils/ecef_to_lla.py -------------------------------------------------------------------------------- /pyradar/Libs/utils/lla_to_ecef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/utils/lla_to_ecef.py -------------------------------------------------------------------------------- /pyradar/Libs/utils/plot_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/utils/plot_settings.py -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/atmosphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/atmosphere.py -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/cloud_fog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/cloud_fog.py -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/diffraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/diffraction.py -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/ducting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/ducting.py -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/oxygen_spectral_attenuation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/oxygen_spectral_attenuation.txt -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/plane_waves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/plane_waves.py -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/rain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/rain.py -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/refraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/refraction.py -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/vegetation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/vegetation.py -------------------------------------------------------------------------------- /pyradar/Libs/wave_propagation/water_vapor_spectral_attenuation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/Libs/wave_propagation/water_vapor_spectral_attenuation.txt -------------------------------------------------------------------------------- /pyradar/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadarBook/software/HEAD/pyradar/setup.py --------------------------------------------------------------------------------