Azzera filtri
Azzera filtri

MatLab C++ Shared Dll library initialization problem

6 visualizzazioni (ultimi 30 giorni)
kishore
kishore il 21 Ago 2017
Modificato: Viren Gupta il 12 Ott 2018
could you please provide the compatibility version for MATLAB R2016b with visual studio version.
same issue with MATLAB R2016b with visual studio 2013.
  1 Commento
Xuechu Xu
Xuechu Xu il 3 Lug 2018
Hello, have you solved the problem of access violation? I have the same problem as yours. I appriciate it very much if you could tell me how to solve this.

Accedi per commentare.

Risposte (2)

Anatoly Khamukhin
Anatoly Khamukhin il 25 Gen 2018
The same problem (Matlab2017 + VS 2015) for me. Probably there is some conflict with java used by MATLAB.
I've fixed it by
const char *args[] = {"-nojvm"};
const int count = sizeof(args) / sizeof(args[0]);
mclInitializeApplication(args, count))
instead of
mclInitializeApplication(NULL,0)

José-Luis
José-Luis il 21 Ago 2017
Modificato: José-Luis il 21 Ago 2017
This was the third hit on the list when googling "compatible compilers matlab 2016b".
Just a hint for the next time you try figuring out something like that.
  3 Commenti
José-Luis
José-Luis il 21 Ago 2017
Access violation: you are trying to access an invalid memory location.
What's the source of the error? No idea without looking at your code. This is something that is easier to troubleshoot using a debugger than reading code, unless it's glaringly obvious.
Also, that is a totally different question.
Please accept the answer that best solves your problem. It is the only "payment" us volunteers get.
Viren Gupta
Viren Gupta il 12 Ott 2018
Modificato: Viren Gupta il 12 Ott 2018
Were you able to solve the issue of Access violation? I am facing a similar issue and need some help!

Accedi per commentare.

Categorie

Scopri di più su C Shared Library Integration in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by