Question


ode45関数で実行したら、警告が出て途中で終了してしまいます。
以下のコマンドを実行したら、警告が出ます。 [t,y] = ode45(@odefcn,[0 10],[0; 10]); 警告: t=8.956588e+00 で失敗。 時間 t で最小の値で許可された (1.421085e-14) より小さいス...

7 years ago | 1 answer | 0

1

answer

Answered
MATLAB Compiler SDK で作成した.NET のdll をC#と組み込むとエラーが出る
作成したDLLのMATLABバージョンと、 ライブラリで使うMWArray のMATLAB Compiler Runtime のバージョンが一致していません。 再度確認してみてください。 なお、MATLAB Compiler Runtime ...

7 years ago | 0

| accepted

Question


MATLAB Compiler SDK で作成した.NET のdll をC#と組み込むとエラーが出る
以下のような、エラーができます。 どのような、症状でしょうか? Assembly 'xxxdll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' uses 'MWArray, Vers...

7 years ago | 1 answer | 0

1

answer

Answered
3次以上の線形回帰の解析ができますか?
可能です。 x1,x2,x3 の3変数で、3次の回帰式を定義したい場合、以下のコマンドで対応します。 fitlm(X,Y,'poly333') あと、交互作用なしの設定も可能で、次数を行列で指定することで可能です。 fitlm(X,Y,...

7 years ago | 0

| accepted

Question


3次以上の線形回帰の解析ができますか?
fitlm関数では、線形、2次式、交互作用ありの2次式が可能なようですが、3次式以上で可能か知りたいです。

7 years ago | 1 answer | 0

1

answer

Answered
MATLAB 起動時にエラー:Error using eval undefined function 'workspacefunc' for input arguments of type 'struct'
以下のコマンドを入力すると、回避ができます。 >> restoredefaultpath;matlabrc

7 years ago | 1

| accepted

Question


MATLAB 起動時にエラー:Error using eval undefined function 'workspacefunc' for input arguments of type 'struct'
MATLAB 起動時にエラーダイアログが表示されます。 Error using eval undefined function 'workspacefunc' for input arguments of type 'struct' その後、通常の...

7 years ago | 2 answers | 0

2

answers

Answered
Type-Safe Interface とは何ですか?
通常、MATLAB Compiler SDK では、NET 用の DLL を作成することができますが、 データのやり取りをするのに、MWArray 型に変換して使います。 Type-Safe Interfaceを使うと、 MWArray 型変換無しに、...

7 years ago | 2

| accepted

Question


Type-Safe Interface とは何ですか?
MATLAB Compiler SDK の.NET アセンブリの統合で提供されている Type-Safe Interface のメリットは何ですか?

7 years ago | 1 answer | 2

1

answer

Answered
System.Typ​eInitializ​ationExcep​tion
プロパティのTarget Framework が、 .NET Framework が4.0 になっていないかチェックをします。

7 years ago | 1

| accepted

Question


System.Typ​eInitializ​ationExcep​tion
MATLAB Compiler SDK で生成したライブラリを、C# でコールするとエラーが出ます。 System.Typ​eInitializ​ationExcep​tion

7 years ago | 1 answer | 1

1

answer

Answered
LabviewとMATLABの連携の仕方について
※ MATLAB Script ノードを使えば、自動的にMATLABが起動して、データをMATLABのワークスペースに入れることができます。 LabVIEWでは、CSV形式などのテキスト形式のファイル出力が出来るので、それを解析する、MATLABプロ...

7 years ago | 3

Answered
Excelのデータから作成したグラフとSimulinkのグラフを同じグラフ上に表示させたい.
EXCELデータが、data.xls であるとしたら、 uiimport('data.xls') から、時間ベクトルを変数名t 電圧をv 電流をi でインポートします。 Simulink のブロックで、To Workspace ブロック...

7 years ago | 2

| accepted

Submitted


Webセミナーデモファイル_20161205自動車業界向けCAN/フリートデータ解析
2016年12月05日開催Webセミナー:自動車業界向けCAN/フリートデータ解析デモファイル

7 years ago | 1 download |

Solved


Add two numbers
Given a and b, return the sum a+b in c.

8 years ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

8 years ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

8 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

9 years ago

Solved


2倍してみよう - ここからスタート!
初めにこの問題を試してみよう。 入力としてxを与え、それを2倍して結果をyに代入せよ。 Examples: Input x = 2 Output y is 4 Input x = 17 Output y is 34 ...

10 years ago