Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

code for identity matrix in hdl

Status
Not open for further replies.
need to generate a identity matrix in hdl plz suggest
type t_MATRIX is (1 to 3, 1 to 3) of integer; -- Assuming a 3x3 matrix
constant IDENTITY3x3:t_MATRIX := (1, 0, 0, 0, 1, 0, 0, 0, 1);

Not compiled or tested, but should get you going.

Kevin Jennings
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top