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.

Coverage comman in for loop

Status
Not open for further replies.

circuitking

Full Member level 5
Joined
Jan 8, 2018
Messages
291
Helped
1
Reputation
2
Reaction score
1
Trophy points
18
Activity points
2,503
Hi I want to set initial values for the below signals.
I wrote code using FOR loop. Does the below code snippet work fine to set all these signals to the given values?

Code:
for( IR 0 1
for( IM 0 7
for( IC24 0 7
converge( 'ic "/I20/IRAM<IR>/IMatrix<IM>/IColumn24<IC24>/net020<0:23>" "1.2" )
converge( 'ic "/I20/IRAM<IR>/IMatrix<IM>/IColumn24<IC24>/net019<0:23>" "0" )
)))

For plotting these signal, I worte something like this.
Code:
for( IR 0 1
for( IM 0 1
for( IC24 0 1
plot(getData("/I20/IRAM<IR>/IMatrix<IM>/IColumn24<IC24>/net019<7>")
     getData("/I20/IRAM<IR>/IMatrix<IM>/IColumn24<IC24>/net020<7>") )
)))

seems like I am doing something wrong...... I guess, because these variables are inside quotes (" ") I don't see an any output
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top