On Dec 23, 2012, at 2:55 PM, seyazar wrote:
> Hi,
>
> i have an octave.txt file generated by d-itg gui program,
>
> the app created this file for 5 flows. octave.txt like below, last column is
> byte size
>
> but i down't know other column what is it ?
>
> how can i plot these columns ?
>
> thanks in advance
>
> selcuk
>
> 1 15 5 -228.198208 15 5 23.329728 128
> 2 15 5 1635.645632 15 5 23.355216 128
> 3 15 5 -1714.816832 15 5 23.355239 128
> 4 15 5 -1396.049728 15 5 23.355254 128
> 5 15 5 -1144.391488 15 5 23.355268 128
> 6 15 5 -909.510464 15 5 23.355282 128
> 7 15 5 -674.629440 15 5 23.355299 128
> 8 15 5 -389.416768 15 5 23.355314 128
To plot the 4th column ...
data = "" ("octave.txt");
plot (data(:,1), data(:,4), "-s")
Ben