RF Toolbox analyze function does not return properly sized array of S-parameters
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
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
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!