Διανυσματικά πεδία

2D

Clear["Global`*"]
F2D = {x - y, x*y};
StreamPlot[F2D, {x, -5, 5}, {y, -5, 5}, PlotLegends -> Automatic, 
 Background -> White]
-5 -2.5 0 2.5 5 -5 -2.5 0 2.5 5
2 4 6 8 10 12 14 16 18 20 22 24
StreamPlot[F2D, {x, -5, 5}, {y, -5, 5}, StreamColorFunction -> None, StreamPoints -> {{{{2, 1}, Red}, {{-1, 4}, Green}, Automatic}}]
-5 -2.5 0 2.5 5 -5 -2.5 0 2.5 5

3D

Clear["Global`*"]
F3D = {x - y, x*y, y/x};
VectorPlot3D[F3D, {x, -5, 5}, {y, -5, 5}, {z, -2, 6}, PlotLegends -> Automatic]
3D Plot 2 4 6 8 10 12 14 16 18 20 22 24 26