`Ldos(fcen, df, nfreq, freq)` ##sig Create an LDOS object with either frequency bandwidth `df` centered at `fcen` and `nfreq` equally spaced frequency points or an array/list `freq` for arbitrarily spaced frequencies. This can be passed to the `dft_ldos` step function below as a k
(*args)
| 5990 | |
| 5991 | |
| 5992 | def Ldos(*args): |
| 5993 | """ |
| 5994 | `Ldos(fcen, df, nfreq, freq)` ##sig |
| 5995 | |
| 5996 | Create an LDOS object with either frequency bandwidth `df` centered at `fcen` and |
| 5997 | `nfreq` equally spaced frequency points or an array/list `freq` for arbitrarily spaced |
| 5998 | frequencies. This can be passed to the `dft_ldos` step function below as a keyword |
| 5999 | argument. |
| 6000 | """ |
| 6001 | args = fix_dft_args(args, 0) |
| 6002 | freq = args[0] |
| 6003 | |
| 6004 | return mp._dft_ldos(freq) |
| 6005 | |
| 6006 | |
| 6007 | def dft_ldos(*args, **kwargs): |
nothing calls this directly
no test coverage detected