Ask Your Question

jackseven's profile - activity

2022-12-31 16:25:51 +0200 received badge  Famous Question (source)
2021-04-12 03:20:17 +0200 received badge  Notable Question (source)
2021-04-12 03:20:17 +0200 received badge  Popular Question (source)
2018-04-09 03:14:45 +0200 received badge  Supporter (source)
2018-04-07 21:09:21 +0200 received badge  Student (source)
2018-04-07 11:38:36 +0200 asked a question 3D Vector Field Doesn't have Arrows

I have been trying to plot 3D vector fields, but I keep running into a problem. The graphic does not have arrows instead it is just lines. Here is the code.

var('x,y,z')
p = plot_vector_field3d((x,y,z), (x, -5, 5), (y, -5, 5), (z, -5, 5))
p.show()