RF Toolbox analyze function does not return properly sized array of S-parameters
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
My problem is the following:
When I run the simple example available from the Mathwork website here:
which is:
del = rfckt.delay; analyze(del,[1e9,2e9,3e9]); del.AnalyzedResult
The value returned in "AnalyzedResult" accurately holds the number of frequencies in del.AnalyzedResult.Freq as specified by "[1e9,2e9,3e9]" however, the S-parameter matrix appears to have been calculated for only one frequency. That is
size(del.AnalyzedResults.S_parameters) = [2 2]
when its size should be [2 2 3], there should be a 2x2 matrix for each frequency analyzed. Am I misinterpreting the data type or is this a bug in the analyze method? For now I can get around this by calculating the S-parameters myself but I'd like to get some closure to this quandary
Risposte (0)
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!