• Alteon@lemmy.world
    cake
    link
    fedilink
    arrow-up
    29
    ·
    14 days ago

    We’ll that’s huge. NumPy is fantastic. Had to use it for a bunch of linear algebra calculations for a Mars Atmospheric Descent Calculator. Fully mapped the trajectory and flight path as it entered the Martian Atmosphere. Was a cool little program…

    • dinckel@lemmy.world
      link
      fedilink
      arrow-up
      10
      ·
      14 days ago

      I’ve had a short period, where i had to use it during uni, and it was honestly a pretty solid experience. Unfortunately i can’t say that about MATLAB, as that was a nightmare in every way imaginable

      • Alteon@lemmy.world
        cake
        link
        fedilink
        arrow-up
        3
        ·
        14 days ago

        I’ll see if I can boot it up and send you the output later. It’s been awhile. If I can get it working, I’ll ask you to give me a bunch of inputs (speed, trajectory, altitude, etc) and I’ll send you the output. I had the speed and trajectory calculated every 0.1s so it was relatively accurate. I was planning to add in boosters and parachutes, but I never got that far. The best I can. Give you os how long it takes to plummit into the ground and at what speed lol…

        It was pretty cool as it would correctly show orbits and the effect of atmospheric drag if you didn’t fully descend in the first orbit around the planet, so you’d just see it loop around several times until it bled off enough speed to eventually descend into the atmosphere. I think I managed to get coreliolis effects added before I stopped messing with it.

        • SatouKazuma@programming.dev
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          13 days ago

          I mean, what were all the coefficients you looked at? Your source code would be really cool, assuming you’re wanting to open it up, of course.

  • wewbull@feddit.uk
    link
    fedilink
    English
    arrow-up
    19
    arrow-down
    2
    ·
    14 days ago

    Furthermore there are many changes to NumPy internals, including continuing to migrate code from C to C++, that will make it easier to improve and maintain NumPy in the future.

    I realise that C can be rather low level a lot of the time, but I’m not sure I’d pick C++ to help keep things easy to maintain. It opens up a Pandora’s box of possibilities.

    • cbarrick@lemmy.world
      link
      fedilink
      English
      arrow-up
      18
      arrow-down
      2
      ·
      edit-2
      14 days ago

      With a good style/best-practice guide, C++ can be quite productive of a language to work with.

      Those kinds of guides typically define which standard/convention to use and which features not to use (cough exceptions cough).

      I highly recommend Google’s C++ style guide: https://google.github.io/styleguide/cppguide.html.

  • gerryflap@feddit.nl
    link
    fedilink
    arrow-up
    9
    ·
    14 days ago

    Awesome! Numpy has been such a useful tool during my data science study. Happy to see that they’re not afraid to make some bigger changes.