@@ -127,8 +127,8 @@ def image(self, img, title=None):
127
127
"""
128
128
Display an arrayfire array as an image.
129
129
130
- Paramters
131
- ---------
130
+ Parameters
131
+ ----------
132
132
133
133
img: af.Array.
134
134
A 2 dimensional array for single channel image.
@@ -144,8 +144,8 @@ def scatter(self, X, Y, Z=None, points=None, marker=MARKER.POINT, title=None):
144
144
"""
145
145
Renders input arrays as 2D or 3D scatter plot.
146
146
147
- Paramters
148
- ---------
147
+ Parameters
148
+ ----------
149
149
150
150
X: af.Array.
151
151
A 1 dimensional array containing X co-ordinates.
@@ -183,8 +183,8 @@ def scatter2(self, points, marker=MARKER.POINT, title=None):
183
183
"""
184
184
Renders the input array as a 2D Scatter plot.
185
185
186
- Paramters
187
- ---------
186
+ Parameters
187
+ ----------
188
188
189
189
points: af.Array.
190
190
A 2 dimensional array containing (X,Y) co-ordinates.
@@ -204,8 +204,8 @@ def scatter3(self, points, marker=MARKER.POINT, title=None):
204
204
"""
205
205
Renders the input array as a 3D Scatter plot.
206
206
207
- Paramters
208
- ---------
207
+ Parameters
208
+ ----------
209
209
210
210
points: af.Array.
211
211
A 2 dimensional array containing (X,Y,Z) co-ordinates.
@@ -224,8 +224,8 @@ def plot(self, X, Y, Z=None, line = None, title=None):
224
224
"""
225
225
Display a 2D or 3D Plot.
226
226
227
- Paramters
228
- ---------
227
+ Parameters
228
+ ----------
229
229
230
230
X: af.Array.
231
231
- A 1 dimensional array containing X co-ordinates.
@@ -264,8 +264,8 @@ def plot2(self, line, title=None):
264
264
"""
265
265
Display a 2D Plot.
266
266
267
- Paramters
268
- ---------
267
+ Parameters
268
+ ----------
269
269
270
270
line: af.Array.
271
271
- A 2 dimensional array of size [n 2]. Each column denotes X, and Y co-ordinates for plotting 2D lines.
@@ -283,8 +283,8 @@ def plot3(self, X=None, Y=None, Z=None, line=None, title=None):
283
283
"""
284
284
Display a 3D Plot.
285
285
286
- Paramters
287
- ---------
286
+ Parameters
287
+ ----------
288
288
289
289
line: af.Array.
290
290
- A 3 dimensional array of size [n 3]. Each column denotes X, Y, and Z co-ordinates for plotting 3D lines.
@@ -302,8 +302,8 @@ def vector_field(self, xpoints, xdirs, ypoints, ydirs, zpoints=None, zdirs=None,
302
302
"""
303
303
Display a 2D or 3D Vector_Field.
304
304
305
- Paramters
306
- ---------
305
+ Parameters
306
+ ----------
307
307
308
308
xpoints : af.Array.
309
309
- A 1 dimensional array containing X co-ordinates.
@@ -364,8 +364,8 @@ def surface(self, x_vals, y_vals, z_vals, title=None):
364
364
"""
365
365
Renders the input array as a 3D surface plot.
366
366
367
- Paramters
368
- ---------
367
+ Parameters
368
+ ----------
369
369
370
370
x_vals: af.Array.
371
371
A 1 dimensional array containing X co-ordinates.
@@ -388,8 +388,8 @@ def hist(self, X, min_val, max_val, title=None):
388
388
"""
389
389
Display a histogram Plot.
390
390
391
- Paramters
392
- ---------
391
+ Parameters
392
+ ----------
393
393
394
394
X: af.Array.
395
395
A 1 dimensional array containing the histogram.
@@ -454,8 +454,8 @@ def set_axes_limits(self, xmin, xmax, ymin, ymax, zmin=None, zmax=None, exact=Fa
454
454
"""
455
455
Set axis limits.
456
456
457
- Paramters
458
- ---------
457
+ Parameters
458
+ ----------
459
459
460
460
xmin : af.Array.
461
461
- lower limit of the x axis.
0 commit comments