Skip to content
Snippets Groups Projects
Commit 42f7c793 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

added script

parent 2d333bf3
No related merge requests found
Pipeline #8431 passed
clear all
clf
tx = ty = linspace (-2, 2, 41)';
[xx, yy] = meshgrid (tx, ty);
tz = xx.^2 + yy.^2;
mesh(tx, ty, tz)
hold on
[x, y] = meshgrid (-2:0.2:2);
h = quiver (x, y, 2*x, 2*y);
set (h, "maxheadsize", 0.33);
hold off
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment