Numerical integration using Python scipy.integrate

Yuwei BaoApril 21, 2023

[1] is a Java IDEA. Here are some handy shortcuts [2]

Shortcuts

GoalMac OS
Open resource / Navigate to file⌘ + Shift + O
Go to Declaration or Usages⌘ + B

Java structures

  1. A function takes value value1 or value2 under certain conditions

f(x)={e2,if i=00,otherwisef(x) = \begin{cases} e^2, & \text{if } i=0 \\ 0, & \text{otherwise} \end{cases}

 i == 0 ? Math.exp(2) : 0

  1. https://www.jetbrains.com/idea/open in new window ↩︎

  2. https://www.jetbrains.com/help/idea/mastering-keyboard-shortcuts.htmlopen in new window ↩︎