Hi! I have a the following trouble:
I have to design a DCT (discrete cosine transformation) Convertor in ALtera MAX+PlusII, using VHDL. Trouble is that this tool can't perform any floating point operations, but discrete cosine transmormation require many of it. Can anybody help me to bypass this...
Hello!
I'm not sure that it is a simulator problem. Tell me please - would it work:
entity mult is
port(
in1 : in real;
in2 : in real;
out1 : out real
);
end entity mult;
architecture beh of mult is
begin
out1 <= in1*in2;
end of architecture beh;
I think, it will not...
Hello!
Tell me please, how can I multiply two REAL values. When I tried, compiler said that there is an error with supporting floating point format.
Thanks. Ilya
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.