Code Monkey home page Code Monkey logo

Comments (3)

blink1073 avatar blink1073 commented on July 2, 2024

Hi @WiseroOrb, thanks for the kind words.

Yes, this is an unfortunate limitation of the way we're evaluating the script. If you need a result you'd have to use a function. Something like:

test.m

function a = test()
   a = [1,2,3];
end

test.py

from oct2py import octave as oc
a = oc.test()
print(a)

Which gives: [[1. 2. 3.]]

from oct2py.

WiserOrb avatar WiserOrb commented on July 2, 2024

Hi @blink1073 ,
So I'm in the process of converting the script in the way you suggested, however I've encountered a major roadblock: I need to return an object from the statistical package, of class gmdistribution. Oct2py trows some warning when I try to return it, and later fails to use it in other functions.
I think the origin of the problem is because this class doesn't implement saveobj.

Right now I'm planning to do use eval(distribution = computeDistribution(args)) and keeping the distribution object in the octave workspace.

This pollutes the way I call the functions, because from now on I need to push/pull every argument and use the eval statement every time I need to use the distribution object.

I thought of treating it as a global variable and not as a funtion paramenter, but this requires writing wrappers for each affected function.

So, python side:

oc.eval('global distribution') #after computeDistribution
oc.fooModified(arg)

Wrapper function

funtion out = fooModified(arg)
    global classifier
    out = foo(arg, classifier)
end

Do you have any better solution?

from oct2py.

blink1073 avatar blink1073 commented on July 2, 2024

The only other option I can see if there is if you can serialize the gmdistribution data yourself by extracting properties into a cell object.

from oct2py.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.