replaced huge 2d twiddle arrays by smaller 1d arrays. Now it uses very low memory

This commit is contained in:
2025-10-09 13:11:36 +03:00
parent f54daffb72
commit 580ba1f9f6
13 changed files with 65843 additions and 1130 deletions

View File

@ -51,6 +51,7 @@ if __name__ == "__main__":
print("data samples:",len(data[X_name]))
for key, val in data.items():
if key != X_name:
chart.add_trace(go.Scatter(x=data[X_name], y=val, name=key, mode="markers+lines"))
# chart.add_trace(go.Scatter(x=data[X_name], y=val, name=key, mode="markers+lines"))
chart.add_trace(go.Scatter(x=data[X_name], y=val, name=key, mode="lines"))
chart.show()