mcode in system generator
조회 수: 11 (최근 30일)
이전 댓글 표시
Am modeling bpsk system using xilinx-system generator block set. while in mcode block, i had written the matlab coding as
function done = bpskmultiplex(mod_sig, m1, m2);
if mod_sig == 1;
done = m1;
else
done = m2;
end
where 'done' is the modulated output,'m1' and 'm2' are the sine and cosine wave inputs and 'mod_sig' is the modulating signal input. But the mcode block didn't give the output.In the coding I had given "BPSKmultiplex", but at the mcode block it didn't change to "BPSKmultiplex".I think thats why i didn't get output.
Can anyone help me how to change it to "BPSKmultiplex"?
댓글 수: 1
Kaustubha Govind
2012년 1월 23일
You may have better luck contacting Xilinx Support forums regarding this question.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 BPSK에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!