about matrix transpose code

R

rams

Guest
Hi friends,
this is ramu. i want a code for matrix transpose code in vhdl
format. if any body knows please mail for me immediately. its very
urgent.my mail address is rams458@gmail.com
hoping for the reply
 
Homework assignment? Why worry about if it is in VHDL or not?

If you have the algorithm, the implementation should be very
straightforward.

JTW
"rams" <battinaprasanna@gmail.com> wrote in message
news:875b6506-33e9-492b-917c-49edcc3722f8@c19g2000prf.googlegroups.com...
Hi friends,
this is ramu. i want a code for matrix transpose code in vhdl
format. if any body knows please mail for me immediately. its very
urgent.my mail address is rams458@gmail.com
hoping for the reply
 
"rams" <battinaprasanna@gmail.com> wrote in message
news:875b6506-33e9-492b-917c-49edcc3722f8@c19g2000prf.googlegroups.com...
Hi friends,
this is ramu. i want a code for matrix transpose code in vhdl
format. if any body knows please mail for me immediately. its very
urgent.my mail address is rams458@gmail.com
hoping for the reply
Surprising they don't teach matrix transposes in school anymore....ah well,
here you go, package it up into a function, or process or entity as you see
fit.

for i in 1 to m loop
for j 1 to n loop
Gazouta(i,j) <= Gazinta(j,i);
end loop;
end loop;

KJ
 
On 23 Mar, 20:40, "KJ" <kkjenni...@sbcglobal.net> wrote:
"rams" <battinaprasa...@gmail.com> wrote in message

news:875b6506-33e9-492b-917c-49edcc3722f8@c19g2000prf.googlegroups.com...

Hi friends,
     this is ramu. i want a code for matrix transpose code in vhdl
format. if any body knows please mail for me immediately. its very
urgent.my mail address is rams...@gmail.com
       hoping for the reply

Surprising they don't teach matrix transposes in school anymore....ah well,
here you go, package it up into a function, or process or entity as you see
fit.

for i in 1 to m loop
  for j 1 to n loop
    Gazouta(i,j) <= Gazinta(j,i);
  end loop;
end loop;

KJ
thank u for sending this code but it is not working. if u can send me
the ful code please. hoping for your reply
 
On Mar 28, 9:01 am, rams...@gmail.com wrote:
<snip>
Surprising they don't teach matrix transposes in school anymore....ah well,
here you go, package it up into a function, or process or entity as you see
fit.

for i in 1 to m loop
  for j 1 to n loop
    Gazouta(i,j) <= Gazinta(j,i);
  end loop;
end loop;

KJ

thank u for sending this code but it is not working.
Most likely because you didn't package it up into a function, or
process or entity as I stated. (you do have to do something)

if u can send me the ful code please.
hoping for your reply- Hide quoted text -
Perhaps you should post your full code and ask a more specific
question based on your simulation results about what is 'not working'.

KJ
 

Welcome to EDABoard.com

Sponsor

Back
Top