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.

Help me write an equation in Verilog A

Status
Not open for further replies.

princemahmmod

Newbie level 4
Joined
Mar 19, 2010
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Ontario
Activity points
1,313
Hi,
Can you help me anyone how to write below equation in verilogA?? Your help would greatly appreciate.
"y=x / (a * exp(-0.5*((x-b)/c)^2) ) +d"
 

Re: Equation in verilogA

Hi,
Sorry I could not understand what you mean. Actually I want 2 make a module and plot this equation. can you explain me clearly how to plot this equation in verilogA please??
y = x/ (a* exp(-0.5*((x-b)/c)^2)) +d
 

Equation in verilogA

You cannot "plot" the equation in verilog-a. You need to build a module, simulate it and then plot the result. The equation can be witten as IADanilov said:
y = x/(a*exp(-0.5*pow((x-b)/c),2))+d;
you just have to define what the symbols are (real, integer...).

If you just want to "plot" the equation you could use matlab.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top