フィルターのクリア

getting an equation from multiple variables

4 ビュー (過去 30 日間)
Essam Ali
Essam Ali 2021 年 2 月 2 日
コメント済み: Walter Roberson 2021 年 2 月 3 日
I need to get the equation of a multiple variables. I have the data a matrix of 5 coulomns; one coloumn for the output and the others for the variables.
Did anyone use a function to get the equation parameters?
  9 件のコメント
Essam Ali
Essam Ali 2021 年 2 月 3 日
Polyfit function does this but in one variable
Walter Roberson
Walter Roberson 2021 年 2 月 3 日
file exchange has polyfitn

サインインしてコメントする。

回答 (1 件)

madhan ravi
madhan ravi 2021 年 2 月 2 日
編集済み: madhan ravi 2021 年 2 月 2 日
MAtrix = [3, 6, 1, 3, 8; 3, 6, 1, 3, 9];
syms x y z w Out
Out * MAtrix(:, 1) == (MAtrix(:, 2 : end) * [x, y, z, w].') % something like this?
ans = 
  1 件のコメント
Essam Ali
Essam Ali 2021 年 2 月 3 日
no these are two differenr equations.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by