Git Product home page Git Product logo

Comments (5)

odashi avatar odashi commented on April 28, 2024

I think math formula is basically not designed for multiple return values, but sometimes they are represented as a tuple, i.e., direct product of some single values.

In Python, returning multiple values like return a, b, c is just the same as returning a tuple return (a, b, c) and it reasonably corresponds to the math formula. In this case, we need not to add any special treatment because both looks already the same.

Python also supports decomposition of lists (e.g., x, y, z = [a, b, c] works fine), but this form can not be reasonably represented by type annotations when the inner values have different types, except using Union or Any.
So we should assume that such functions are just functions returning a list of something, not multiple values.

from latexify_py.

odashi avatar odashi commented on April 28, 2024

For lists of the same type values, e.g., int, it is represented as List[int] by the type annotation. In this case it is also better to assume that the function is returning a list.

from latexify_py.

1MLightyears avatar 1MLightyears commented on April 28, 2024

Yes I know it returns tuple but the latex output writes something like <_ast.Tuple object at 0x********(or _ast.List, depending on which type is transferred to the return statement).
Now, latexify works like this:

def func(a,b):
  return (a+b,a-b)

print(get_latex(func))
#\operatorname{func}(a, b)\triangleq <_ast.Tuple object at 0x000002B53785A388>

What I want is something like:

def func(a, b):
  return (a + b, a - b)

print(get_latex(func))
#\operatorname{func}(a, b)\triangleq \left( a + b\space,\space a - b\right)

I'm thinking of implementing the logic of this part.

from latexify_py.

odashi avatar odashi commented on April 28, 2024

The reason is our parser does not implement visit_Tuple currently so all tuple expressions are not parsed for now (and it is the same for list and dict). As I am stopping to push everything (#17) it is welcome if you add it. I think implementing tuple and list are straightforward.

from latexify_py.

1MLightyears avatar 1MLightyears commented on April 28, 2024

That's right, I'm just looking for an agreement of opinion for this. It will be very embarrassing if I implement it, then other contributors think it useless. Good luck!

from latexify_py.

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.