Giter Site home page Giter Site logo

Comments (3)

rogersce avatar rogersce commented on August 16, 2024 5

Trying to directly load and save vectors of vectors isn't going to work -- the data isn't laid out contiguously in memory.

Please take a look at issue #20 for loading 2D data from file, into a vector of vectors.

To save a vector of vectors, you first need to copy it to a contiguous block of memory, e.g.

//data is a std::vector<std::vector<double>>. Each sub-vector should have the same size.
size_t N = data.size();
size_t M = data[0].size();

std::vector<double> raw(N*M);

for(int row = 0;row < N; row++) {
   for(int col = 0;col < M; col++) {
      raw[row*M+col] = data[row][col];
   }
}

cnpy::npy_save("arr1.npy",&raw[0],{N,M},"w");

from cnpy.

chraibi avatar chraibi commented on August 16, 2024 1

Please post a complete working example.

from cnpy.

asafben avatar asafben commented on August 16, 2024

Excellent! It was very helpful, thank you.

from cnpy.

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.