accu.template
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 
10 clear all
11 clc
12 
13 %%
14 fname = 'uv.txt';
15 
16 [xc,ia,v] = ascii_read_meshvector(fname);
17 
18 h = trisurf(ia, xc(:,1), xc(:,2), v);
19 
20 waitfor(h) % wait for closing the figure
xc
xc
Definition: ascii_read_meshvector.m:30
h
h
Definition: visualize_results.m:18
v
v
Definition: ascii_read_meshvector.m:40
txt
id txt()
ia
ia
Definition: ascii_read_meshvector.m:35