jacobi_oo_STL
Loading...
Searching...
No Matches
visualize_results.m
Go to the documentation of this file.
1%% Visualize results
2%
3% flatpak run org.octave.Octave <filename>
4% or
5% octave --no-window-system --no-gui -qf <filename>
6%
7% or
8% matlab -nosplash < <filename>
9
10clear all
11clc
12
13%%
14fname = 'uv.txt';
15
16[xc,ia,v] = ascii_read_meshvector(fname);
17
18h = trisurf(ia, xc(:,1), xc(:,2), v);
19
20waitfor(h) % wait for closing the figure
id txt()