How can you ask matlab to switch a set of input parameters of an array to solve different set of equations each time?
1 回表示 (過去 30 日間)
古いコメントを表示
How can you ask matlab to switch a set of input parameters of an array to solve different set of equations each time?
I am trying to create a matlab code that will be able to identify what parameters are needed for each equation and then switch to use to those parameters already identified. I'd like to achieve this in the program without using the command line.
1 件のコメント
Birdman
2018 年 4 月 18 日
In which program you want to achieve this? Simulink? What have you done so far?
回答 (1 件)
Ngoc Thanh Hung Bui
2018 年 4 月 18 日
編集済み: Ngoc Thanh Hung Bui
2018 年 4 月 18 日
just use a for loop and a function, for examlple:
for i = 1:length(A) %A is your input array
%use if else for the condition of input parameter
equation_solve(A(i))
end
the question is too unspecificed, so that's all I got
Is this what you're looking for?
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!