implementing complex multiplication in simulink

how to build the complex mulitplication block with total 4 inputs(2 real,2 imaginary)

답변 (3개)

Pratheek Punchathody
Pratheek Punchathody 2021년 4월 23일
Using the MATLAB Function block, we can create a complex multiplication block with the required number of inputs.
Create a functional block in simulink, by double clicking on this function block write the below function which takes 2 real inputs and 2 imaginary inputs.
function y = fcn(a,b,c,d) %a,c are real inputs and b,d are imaginary inputs
c1=complex(a,b);
c2=complex(c,d);
y = c1*c2; % performing multiplication
end
The following MATLAB function block is created with 2 real inputs and 2 imaginary inputs. The multiplication operation of the two complex numbers are performed and the output is shown with the variable y.
Hope this helps..!

댓글 수: 4

James Witkoskie
James Witkoskie 2023년 3월 14일
편집: James Witkoskie 2023년 3월 14일
Simulink should have a native block that takes in two complex inputs and outputs one complex output.
Is using a MATLAB function block the most hardware-friendly implementation?
There seems to be an HDL optimized complex division block, but not an HDL optimized complex multiplication block. Which method of implementation do you recommend for multiplication of two complex 4x4 matrices in a HDL Coder project?
Thank you in advance!
Have you happened to explore using a Product block in Matrix mode with complex signals ?
Yes I have. Since I saw, that the results were different from my Matlab reference code, I figured the product block (matrix multiplication mode) doesn't work for complex signals.

댓글을 달려면 로그인하십시오.

Kiran Kintali
Kiran Kintali 2023년 5월 9일

1 개 추천

For HDL Code Generation you can use the Simulink and MATLAB function examples shown below.
These examples use FPGA/ASIC friendly full precision intermediate products in the complex multiplication.
>> Simulink start page / HDL Coder templates section
>> eml_design_patterns

댓글 수: 2

Thank you very much!
Is there also an example for complex multiplication of matrices?
Kiran Kintali
Kiran Kintali 2023년 5월 10일
편집: Kiran Kintali 2023년 5월 10일
Here are few product examples for your reference that can be modified for your use.
HDL Coder has several examples. Can you share more details on your requirements?
Are you looking for streaming (sample by sample) implementation to be done on FPGA/ASIC ? Do you need Floating-point or fixed-point precision? Are some of the inputs constants (like state space matrix compuation), if yes, is the data sparse or dense? Is the data source stored on the internal memory or external memory? What is the context in which matrix multiplication be used?

댓글을 달려면 로그인하십시오.

Walter Roberson
Walter Roberson 2023년 5월 9일

0 개 추천

You can use blocks to combine each real component with its corresponding imaginary component. Then you can use a Product block https://www.mathworks.com/help/simulink/slref/product.html . Just be sure not to set the output signal type to Inherit: Keep MSB, or to Inherit: Match Scaling, as those two do not support complex signals.

카테고리

질문:

2021년 4월 20일

편집:

2023년 5월 10일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by