• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Plotting data from array

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 149
  • Views 15672
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Plotting data from array

IvarL
IvarL over 13 years ago

Hi,

I am having problems plotting or retreiving data from an array. I declare an x-axis and a function, e.g.

declare(xaxis[len]) 
declare(output[len])

and then do some calculations

for(i 0 len-1
   xaxis = i
   output = algorithm(xaxis)
)

where algorithm() is a general algorithm doing some processing. Now I want to plot "output". I have tried both

wave_output = drCreateWaveform(output xaxis)
wave_output = abMakeWaveform(output xaxis)

but none of these work because they want the output-values as a list rather than a vector/array. The output array contains data, so I can see the values output[0], output[1] etc, but I haven't found out how to convert them to a wave. How do I go about to produce a waveform from the output I have generated with the algorithm?

Thanks.

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 13 years ago

    You could use vectorToList(output) to get a list. And the same for the xaxis. Or you could directly create the X and Y vectors as you go along:

    xaxis=drCreateVec('double len)
    output=drCreateVec('double len)
    for(i 0 len-1
      drSetElem(xaxis i i)
      drSetElem(output i algorithm(i))
    )
    wave=drCreateWaveform(xaxis output)

    Andrew

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information