Crystal


Project:

Run:

dashboard
waves
filter_hdr
ballot

Please pick the required project and run to display.

Haven't made plots yet?
No problem!

Try this out to get started:


                                import time
                                import numpy as np
                                from crystal import Crystal

                                cr = Crystal(project_name="Realtime_sine")
                                x_range = np.arange(0, 1000, 0.1)

                                for i in x_range:
                                value = np.sin(2*np.pi*i)
                                cr.scalar(value=value, step=i, name="sine_wave")
                                print("step: {} \t value: {}".format(i, value))
                                time.sleep(1)  # one value a second
                            
Checkout this link for more info!

You are now in the dashboard window

This section is still being worked on!

{{extract_correct_name(value)}}

You are now in the images window

This section is still being worked on!