Skip to content

Commit ffb3dce

Browse files
author
hudde
committedMar 17, 2024
translated to english
1 parent b60528f commit ffb3dce

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎nonlinear_programming.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@
778778
"outputs": [],
779779
"source": [
780780
"contour_plot.add_gradient_descent(x0=contour_plot.result, function=f, grad=lambda x : (grad_f(x) + alpha*grad_h_sq(x)), gamma=gamma,\n",
781-
" iterations=100, Nebenbedingung = h)\n",
781+
" iterations=100, constraint = h)\n",
782782
"\n",
783783
"contour_plot.show()\n",
784784
"\n",

‎nonlinear_programming.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# import von numpy fuer arrays und wesentliches mathematische Funktionen
1+
# import of numpy for arrays and basic mathematical functions
22
import numpy as np
3-
# import von plotly fuer die Graphen
3+
# import of plotly for the graphs
44
import plotly.graph_objects as go
55
from plotly.subplots import make_subplots
66

@@ -42,7 +42,7 @@ def add_gradients(self, gradf):
4242
arrowwidth=2,
4343
arrowcolor='red')
4444

45-
def add_gradient_descent(self, x0, function, grad, gamma=1, iterations=10, color=None, Nebenbedingung=None):
45+
def add_gradient_descent(self, x0, function, grad, gamma=1, iterations=10, color=None, constraint=None):
4646
x = np.zeros(shape=(iterations + 1, 2))
4747
f_x = np.zeros(iterations + 1)
4848
x[0, :] = np.array(x0)
@@ -57,15 +57,15 @@ def add_gradient_descent(self, x0, function, grad, gamma=1, iterations=10, color
5757
showlegend=False,
5858
line_color=color)
5959
self.result = x[-1]
60-
if Nebenbedingung is None:
60+
if constraint is None:
6161
self.update_layout(title="x0=" + str(np.round(x0, 3)) + ", gamma =" +
6262
str(np.round(gamma, 3)) + ",<br> iterations=" + str(iterations) +
6363
", f(x)=" + str(np.round(f_x[-1], 3)) + ", x=" + str(np.round(self.result, 3)))
6464
else:
6565
self.update_layout(title="x0=" + str(np.round(x0, 3)) + ", gamma =" +
6666
str(np.round(gamma, 3)) + ",<br> iterations=" + str(iterations) +
6767
", f(x)=" + str(np.round(f_x[-1], 3)) + ", h(x) = "
68-
+ str(np.round(Nebenbedingung(self.result), 3))
68+
+ str(np.round(constraint(self.result), 3))
6969
+ ",<br> x=" + str(np.round(self.result, 3)))
7070
self.for_each_trace(
7171
lambda t: t.update(hovertemplate="x1 %{x}<br>x2 %{y}<extra></extra>"))
@@ -107,7 +107,7 @@ def contour_zoom(self, xmin, xmax, ymin, ymax, function):
107107
self.update_layout(xaxis_range=[xmin, xmax])
108108
self.update_layout(yaxis_range=[ymin, ymax])
109109

110-
def add_gradient_descent_surface(self, x0, function, grad, gamma=1, iterations=10, color=None, Nebenbedingung=None):
110+
def add_gradient_descent_surface(self, x0, function, grad, gamma=1, iterations=10, color=None, constraint=None):
111111
x = np.zeros(shape=(iterations + 1, 2))
112112
f_x = np.zeros(iterations + 1)
113113
x[0, :] = np.array(x0)

0 commit comments

Comments
 (0)
Please sign in to comment.