help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: help!!!


From: Doug Stewart
Subject: Re: help!!!
Date: Sat, 18 Apr 2015 10:04:39 -0400



On Sat, Apr 18, 2015 at 6:29 AM, 배원민 <address@hidden> wrote:

I want to know how can I convert this DAT file to m-file and extract some data along with *PRZB's value(when it is 10, 22, 33, 44, 45, 56, 57, 58, 59, 60, 61) for each step.

i need your help.


_______________________________________________
Help-octave mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/help-octave




--
I looked at your file, and there are many ways to approach this.
 
One way is


make a dat file for each step.
step1.dat
step22.dat
etc.

In each file just have the raw data.
Do all  this with a text editor.



Now in octave do:

d1=load("step1.dat")
d22=load('step22.dat')
etc

Now also in octave process d1 ,d22 etc. to get your answers.

Did this help???

Doug



reply via email to

[Prev in Thread] Current Thread [Next in Thread]