GithubHelp home page GithubHelp logo

Comments (3)

tbeu avatar tbeu commented on September 1, 2024

Can you please create a minimal compilable example without the QString/QChar dependency? Thanks.

from matio.

tbeu avatar tbeu commented on September 1, 2024

Can you please create a minimal compilable example without the QString/QChar dependency? Thanks.

@divyesh19399 Friendly reminder.

from matio.

tbeu avatar tbeu commented on September 1, 2024

The following code works for me as expected:

#include <string>
#include "matio.h"

int main() {
    mat_t *pmat1 = Mat_CreateVer("test_5.mat", NULL, MAT_FT_MAT5);
    mat_t *pmat2 = Mat_CreateVer("test_73.mat", NULL, MAT_FT_MAT73);

    const char qstr[] = "\xCE\xA9"; // UTF-8 representation of the Greek letter Omega (0x03A9)
    std::string dataString = "Gen Imp Drop (" + std::string(qstr) + ")";

    size_t sz[2] = { 1, dataString.size() };
    matvar_t *matString = Mat_VarCreate("charArray", MAT_C_CHAR, MAT_T_UTF8, 2, sz, (void *)dataString.c_str(), 0);

    Mat_VarPrint(matString, 1);
    Mat_VarWrite(pmat1, matString, MAT_COMPRESSION_NONE);
    Mat_VarWrite(pmat2, matString, MAT_COMPRESSION_NONE);

    Mat_VarFree(matString);
    Mat_Close(pmat1);
    Mat_Close(pmat2);

    return 0;
}

and generates the following two files.

from matio.

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.