Monostatic Radar Received Power Calculation
This problem aims to determine the received power of a monostatic radar system. The function takes as input the main radar param...
1 day 前
已解决
Radar Unambiguous Range Determination
This problem aims to determine the radar unambiguous range based on the Pulse Repetition Frequency (PRF). The function takes the...
1 day 前
已解决
Calculate Radar Pulse Energy
Compute the energy contained in a single radar pulse. The inputs are the peak power Pp (W) and the pulse width PW (s). The pulse...
1 day 前
已解决
Compute Average Power of a Pulsed Radar
Compute the average transmitted power of a pulsed radar over one pulse repetition time. The inputs are the peak power Pp (Watt [...
1 day 前
已解决
Compute Radar Wavelength from Frequency
Radar systems operate at electromagnetic frequencies. The wavelength of the transmitted signal is related to the operating frequ...
1 day 前
已解决
Compute Radar Duty Cycle
A pulsed radar transmitter operates for a limited amount of time during each transmission cycle. The duty cycle represents the f...
1 day 前
已解决
Radar Target Distance Calculation
A radar system sends a short electromagnetic pulse toward a target and measures the elapsed time between transmission and recept...
Range Resolution of a Pulsed Radar
A pulsed radar transmits a rectangular pulse with duration tau seconds. Given the pulse duration, compute the radar range resolu...
1 day 前
已解决
Basic Physics X
Calculate the Kinetic Energy (KE) by Weight (w), Distanec (d), and Time (t) without Mass (m) or Speed (v).
1 day 前
已解决
Basic Physics IX
Calculate the Kinetic Energy (KE) by Weight (w) instead of Mass (m).
1 day 前
已解决
Basic Physics VIII
Calculate the Mechanical Energy (ME) when the point is B.
The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".
Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...
1 day 前
已解决
Times 2 - START HERE
Try out this test problem first.
Given the variable x as your input, multiply it by two and put the result in y.
Examples:...
1 day 前
已解决
Swap two numbers
Example
Input:
a = 10
b = 20
Output
a = 20
b = 10