added interactive window support

This commit is contained in:
git-sandro 2025-09-19 00:35:18 +02:00
parent c446cbf400
commit 0e7fa46027
3 changed files with 7 additions and 17 deletions

View File

@ -1 +1 @@
This reposetory is used for saving my calculations
This reposetory is used for saving my calculations. Install Jupyter VS Code extension for interactive window

View File

@ -1,11 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Sep 18 17:10:29 2025
@author: s
"""
#%%
import numpy as np
# Berechnungen
@ -24,3 +17,5 @@ def main():
main()
# %%

View File

@ -1,10 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Sep 18 17:47:51 2025
@author: s
"""
#%%
import sympy as sp
import IPython.display as dp
sp.init_printing()
@ -19,4 +13,5 @@ h=sp.simplify(f) #vereinfachen
i=sp.factor(f) #faktorisieren
#Ausgabe
dp.display(f)
dp.display(f)
# %%