Bruno Godrabeli Posted February 14, 2018 Report Share Posted February 14, 2018 Hi all, I'm new to this. Our simulation generates a bunch of analog channels. I would like to do some post-processing (mathematical stuff like max, diff, statistics,..) before viewing. What is the easiest way? # bruno Quote Link to comment Share on other sites More sharing options...
Christoph Grimm Posted February 14, 2018 Report Share Posted February 14, 2018 You can do it either in C++ before writing it to a file, or read the files into Matlab and do post-processing there. Quote Link to comment Share on other sites More sharing options...
Bruno Godrabeli Posted February 28, 2018 Author Report Share Posted February 28, 2018 Hi Christoph, ..., i tried with Matlab and it was working fine. Thanks !! Later this week my colleage told me that this can be done transparently with the signalScript feature of our waveform viewer (without importing steps, automatically while displaying). while ( iter.hasNext()) { var time<:Long:> = iter.next(out); out.write(time, false, in0.floatValue() - in1.floatValue());} Delta was easy, need to find out how to do more complex stuff. # bruno Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.