Skip to content

Commit b74840e

Browse files
Update README.md
1 parent 946e862 commit b74840e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Implementing the task for finding minimum of given smooth and non-smooth functio
115115
Initial **smooth** function is as following (the same as it is in approximation task above):
116116
<br/>**f(x) = sin(x / 5) * exp(x / 10) + 5 * exp(-x / 2)**
117117

118-
Finding minimum of **smooth** function with **'BFGS'** method with start point **2**
118+
<br/>Finding minimum of **smooth** function with **'BFGS'** method and start point **2**
119119
<br/>Part of the code is shown below:
120120
```py
121121
# Setting initial point in form of 'ndarray' as 'minimize' function requires it in form of 'ndarray'
@@ -128,7 +128,7 @@ y0_min = optimize.minimize(f_array, x0_start, method='BFGS')
128128
print(y0_min) # fun = 1.7452682903449388, iterations = 6
129129
```
130130

131-
<br/>Finding minimum of **smooth** function with **'BFGS'** method with start point **30**
131+
<br/>Finding minimum of **smooth** function with **'BFGS'** method and start point **30**
132132
<br/>Part of the code is shown below:
133133
```py
134134
# Setting initial point in form of 'ndarray' as 'minimize' function requires it in form of 'ndarray'
@@ -159,7 +159,7 @@ def h_array(k):
159159
return np.int_(f_array(k))
160160
```
161161

162-
<br/>Finding minimum of **non-smooth** function with **'BFGS'** method with start point **30**
162+
<br/>Finding minimum of **non-smooth** function with **'BFGS'** method and start point **30**
163163
<br/>Part of the code is shown below:
164164
```py
165165
# Setting initial point in form of 'ndarray' as 'minimize' function requires it in form of 'ndarray'

0 commit comments

Comments
 (0)