Skip to content
Snippets Groups Projects
Commit 5c030b17 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Delete intermediate value

parent 95a38681
No related branches found
No related tags found
No related merge requests found
...@@ -12,10 +12,10 @@ Y = y * v'; ...@@ -12,10 +12,10 @@ Y = y * v';
for i=1:length(x) for i=1:length(x)
for j=1:length(y) for j=1:length(y)
vec = [ X(i,j); Y(i,j) ]; vec = [ X(i,j); Y(i,j) ];
val = duneevaluate(vec); f(i,j) = duneevaluate(vec);
f(i,j) = val;
end end
end end
axis([-10, 10, -10, 10]); axis([-10, 10, -10, 10]);
surf(x, y, f) surf(x, y, f)
hold on; hold on;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment