[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Octave install and initial program.
From: |
Juan Pablo Carbajal |
Subject: |
Re: Octave install and initial program. |
Date: |
Thu, 7 May 2015 19:57:51 +0200 |
On Thu, May 7, 2015 at 3:48 PM, Roger Moore
<address@hidden> wrote:
> Hi,
> I have just install Octave onto my Laptop "sudo yum install octave",
> which was successful. So, now I have >octave -v = GNU Octave 3.8.2
>
> I have download some ecg data and created a single column file with the
> data, out.txt.
>
> I can load it.
>> load "out.txt";
>>
>>x=out(1:1000,1);
>>
>>x
> x =
>
> -0.06000
> -0.06500 etc ...
>
>>plot(x);
> Panic: Segmentation fault -- Stopping myself...
> attempting to save variables to 'octave-workspace'...
> save to 'octave-workspace' complete
> Segmentation fault (core dumped)
> [ ]$
>
> The plot brings up a GUI, but crashes soon after.
>
> Any ideas?
>
> Regards,
>
> Roger Moore.
>
>
>
>
>
>
>
>
>
>
>
>
>
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/help-octave
>
No idea what is causing this, but it would help if you tell us:
- the output of graphics_toolkit
- your OS (uname -r)
If you have gnuplot installed in your OS, you can try
close all;
graphics_toolkit gnuplot
and then attempt to plot again.