C++においてmxArrayにデータ格納する方法
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Yasuaki Tsuruoka
le 18 Juil 2018
Commenté : Yasuaki Tsuruoka
le 25 Juil 2018
MATLAB Compiler SDKを使用して、行列(a1, a2)の加算をするdllを作成しました。 C++にてdll内の"mlfMyadd"関数に引数を与えて結果を取得しようと試みています。 しかし、引数の型がmxArrayになっており、どのようにデータを格納するのか、取り出すのかがわかりません。 データについては単純な以下で試してみたいです。
a1[] = {1.0, 2.0};
a2[] = {3.0, 4.0};
結果として、
a[] = {4.0, 6.0};
を取得できないでしょうか。
0 commentaires
Réponse acceptée
Kei Otsuka
le 19 Juil 2018
MATLAB Compiler SDKのヘルプドキュメント、
"Integrate a C Shared Library into an Application" が参考になるのではと思います。
\n \n
#1, mxCreateDoubleMatrixを利用してmxArray型の行列を作成し、
#2, memcpyで入力データをコピーして型変換
#3, 作成したライブラリをCall
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur MATLAB Compiler dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!