help-octave
[Top][All Lists]
Advanced

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

Re: Installation problem of octave 4.2.1 on Windows 10


From: vempati Sarma
Subject: Re: Installation problem of octave 4.2.1 on Windows 10
Date: Tue, 2 Jan 2018 18:20:35 +0530

Dear Svetlana & Sourav,
I have also installed Octave 4.2.1 pre-built Windows 10 version on my Acer Laptop Aspire IV, running Windows 10. I am able to use for many hours without any trouble. Let me know if any other information that will be useful.


On Fri, Dec 29, 2017 at 3:43 PM, <address@hidden> wrote:
Send Help-octave mailing list submissions to
        address@hidden

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.gnu.org/mailman/listinfo/help-octave
or, via email, send a message with subject or body 'help' to
        address@hidden

You can reach the person managing the list at
        address@hidden

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Help-octave digest..."


Today's Topics:

   1. Re: Installation problem of octave 4.2.1 on Windows 10
      (Svetlana Tkachenko)
   2. how to make a matrix with all combinations of digits
      efficiently (Jean Dubois)
   3. Re: how to make a matrix with all combinations of digits
      efficiently (Juan Pablo Carbajal)
   4. Re: Machine learning support (sharanbr)
   5. Re: Machine learning support (address@hidden)
   6. Re: Machine learning support (Carlo De Falco)
   7. Re: how to make a matrix with all combinations of digits
      efficiently (Jean Dubois)


----------------------------------------------------------------------

Message: 1
Date: Fri, 29 Dec 2017 05:33:56 +1100
From: Svetlana Tkachenko <address@hidden>
To: Sourav Das <address@hidden>, address@hidden
Subject: Re: Installation problem of octave 4.2.1 on Windows 10
Message-ID:
        <1514486036.3443754.address@hiddenmessagingengine.com>
Content-Type: text/plain; charset="utf-8"

Dear Sourav.

Sourav Das wrote:
> I had installed octave 4.2.1 on my hp laptop windows 10. It worked a few hours constantly. Then,it was stopped saying, 'an error has been occurred'. I closed the window and reopened it. Same massage is shown. What can I do now ??

This is an unhelpfully uninformative error message. Personally I would test for this issue with a new OS user to rule out issues with how your Octave settings are saved under that particular user.

Regards,
Svetlana



------------------------------

Message: 2
Date: Thu, 28 Dec 2017 21:25:02 +0100
From: Jean Dubois <address@hidden>
To: address@hidden
Subject: how to make a matrix with all combinations of digits
        efficiently
Message-ID:
        <CAF=fzf9yrYOMrKQ_E5aMDWzK9_address@hiddengmail.com>
Content-Type: text/plain; charset="UTF-8"

I'd like to generate a matrix like this (small version to give you the idea):

0 0 0 (three columns in this example)
0 0 1
0 0 2
0 0 3
.
.
.
9 9 8
9 9 9

Could anyone here show me how to do this efficiently?

thanks in advance



------------------------------

Message: 3
Date: Fri, 29 Dec 2017 00:07:43 +0100
From: Juan Pablo Carbajal <address@hidden>
To: Jean Dubois <address@hidden>
Cc: Help GNU Octave <address@hidden>
Subject: Re: how to make a matrix with all combinations of digits
        efficiently
Message-ID:
        <CABDtPkTk2xZ7m0J+sOmtfJ=E8WkNBxpP5EjqaXbaU6Wou=_1LA@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

On Thu, Dec 28, 2017 at 9:25 PM, Jean Dubois <address@hidden> wrote:
> I'd like to generate a matrix like this (small version to give you the idea):
>
> 0 0 0 (three columns in this example)
> 0 0 1
> 0 0 2
> 0 0 3
> .
> .
> .
> 9 9 8
> 9 9 9
>
> Could anyone here show me how to do this efficiently?
>
> thanks in advance
>
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/help-octave

This is the decomposition on base 10, a way of doing it is

nc         = 3; # number of columns
base     = 10;
i            = (0:(base^nc-1)).'; # row index - 1
counter = mod( floor (i ./ base.^[(nc-1):-1:0]), base);

it should work for any integer base, but please do check.



------------------------------

Message: 4
Date: Thu, 28 Dec 2017 20:45:19 -0700 (MST)
From: sharanbr <address@hidden>
To: address@hidden
Subject: Re: Machine learning support
Message-ID: <address@hiddennabble.com>
Content-Type: text/plain; charset=us-ascii

THanks. I have another question.
As I am new to ML, I am looking for some inputs about the right method to
use for a problem statement.
However, I have had little help from redditt forum on this.

Do you know a forum where people are more active  and willing to help?





--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html



------------------------------

Message: 5
Date: Fri, 29 Dec 2017 09:17:14 +0000 (UTC)
From: address@hidden
Cc: address@hidden
Subject: Re: Machine learning support
Message-ID:
        <849237931.5603247.1514539034457.JavaMail.zimbra@comcast.net>
Content-Type: text/plain; charset="utf-8"

If you are using NVIDIA CUDA-based machine learning see:
https://devtalk.nvidia.com/default/board/53/accelerated-computing/

----- Original Message -----From: sharanbr <address@hidden>To: address@hidden: Fri, 29 Dec 2017 03:45:19 -0000 (UTC)Subject: Re: Machine learning support

THanks. I have another question.As I am new to ML, I am looking for some inputs about the right method touse for a problem statement.However, I have had little help from redditt forum on this.

Do you know a forum where people are more active and willing to help?





--Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html

_______________________________________________Help-octave mailing address@hidden://lists.gnu.org/mailman/listinfo/help-octave
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.gnu.org/archive/html/help-octave/attachments/20171229/7e7fc59d/attachment.html>

------------------------------

Message: 6
Date: Fri, 29 Dec 2017 09:51:11 +0000
From: Carlo De Falco <address@hidden>
To: Juan Pablo Carbajal <address@hidden>
Cc: sharanbr <address@hidden>, Help GNU Octave
        <address@hidden>, Enrico Bertino <address@hidden>,
        Francesco Faccio <address@hiddenit>
Subject: Re: Machine learning support
Message-ID: <930B59DB-692E-470F-86F7-address@hidden>
Content-Type: text/plain; charset="us-ascii"



> On 28 Dec 2017, at 16:08, Juan Pablo Carbajal <address@hidden> wrote:
>
> Hi,
>
> I work on ML mainly using Python (scikitlearn, mltk, theano, etc) and
> Octave (gpml, stk, optim, etc). I stay away from R when possible. I
> also use C/C++ (Shogun, MLPack, etc...) which many times can provide
> an oct file interface.
>
> ML as a topic is too wide. You rather focus on one aspect of ML and
> write your package, examples are nnet, fuzzy, gpml.
> If your plan is to do ML on text, I would say that Octave is not the
> best choice, in this cas eI woudl stick to Python.
>
> Take a look at Julia language as well, there is plenty of packages
> already for that one.
>
> Cheers

As far as NNET is concerned, there has been a recent GSOC project intended
to revive the NNET package for Octave last year.

The student and mentor of this project are in CC.

c.


------------------------------

Message: 7
Date: Fri, 29 Dec 2017 11:13:23 +0100
From: Jean Dubois <address@hidden>
To: Juan Pablo Carbajal <address@hidden>, address@hidden
Subject: Re: how to make a matrix with all combinations of digits
        efficiently
Message-ID:
        <CAF=fzf_qKr1quVDD8H_Zm89H1mNSV9k_address@hiddencom>
Content-Type: text/plain; charset="UTF-8"

2017-12-29 0:07 GMT+01:00 Juan Pablo Carbajal <address@hidden>:
> On Thu, Dec 28, 2017 at 9:25 PM, Jean Dubois <address@hidden> wrote:
>> I'd like to generate a matrix like this (small version to give you the idea):
>>
>> 0 0 0 (three columns in this example)
>> 0 0 1
>> 0 0 2
>> 0 0 3
>> .
>> .
>> .
>> 9 9 8
>> 9 9 9
>>
>> Could anyone here show me how to do this efficiently?
>>
>> thanks in advance
>>
>> _______________________________________________
>> Help-octave mailing list
>> address@hidden
>> https://lists.gnu.org/mailman/listinfo/help-octave
>
> This is the decomposition on base 10, a way of doing it is
>
> nc         = 3; # number of columns
> base     = 10;
> i            = (0:(base^nc-1)).'; # row index - 1
> counter = mod( floor (i ./ base.^[(nc-1):-1:0]), base);
>
> it should work for any integer base, but please do check.
Dear Juan,
I bumped into the following problem. I changed your code to a function
like this:

function [counter] = decomp (base, nc)
i            = (0:(base^nc-1)).'; # row index - 1
counter = mod( floor (i ./ base.^[(nc-1):-1:0]), base);
endfunction

It works fine for a lot of cases but the case I want to use is
problematic as you can see here:
result=decomp(10,9);
error: out of memory or dimension too large for Octave's index type
error: called from
    decomp at line 27 column 9


in fact I need decomp(10,10)

do you see a workaround for this problem?

kind regards,



------------------------------

Subject: Digest Footer

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


------------------------------

End of Help-octave Digest, Vol 141, Issue 49
********************************************



--
Best Regards,
vsrk sarma

reply via email to

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