29 lines
622 B
Python
29 lines
622 B
Python
# This is a sample Python script.
|
|
|
|
# Press ⌃R to execute it or replace it with your code.
|
|
# Press Double ⇧ to search everywhere for classes, files, tool windows, actions, and settings.
|
|
from util import *
|
|
import plotly.graph_objects as go
|
|
|
|
liste: list[int] = np.zeros(50)
|
|
|
|
Bscan: list[int] = []
|
|
|
|
Cscan: list[int] = []
|
|
|
|
interfaces: list[int] = [10]
|
|
|
|
amplitudes: list[int] = [255]
|
|
|
|
profondeur: list[int] = [20]
|
|
|
|
position_debut: list[int] = [0]
|
|
|
|
position_fin: list[int] = [50]
|
|
|
|
trainee: [int] = 2
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main_func(liste, interfaces, amplitudes, profondeur, position_debut, position_fin, trainee)
|