Have equation, need to loop through all data and variables.

1 回表示 (過去 30 日間)
new2matlab
new2matlab 2020 年 8 月 4 日
編集済み: Raunak Gupta 2020 年 8 月 8 日
I have an equation of answer# = (a+b)*c where a, b, and c, are each a column in a different data structure. How would I go about looping through this 100 times and saving/naming the answer something different for plotting?
  2 件のコメント
John D'Errico
John D'Errico 2020 年 8 月 4 日
Why do you think you need a loop? Maybe it is time to learn to use MATLAB?
d = (a+b).*c);
new2matlab
new2matlab 2020 年 8 月 4 日
I am trying to learn right now, thanks for the advice though. I am not sure how to construct a loop that brings data into the equation from various data sets that do not match.

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

回答 (1 件)

Raunak Gupta
Raunak Gupta 2020 年 8 月 8 日
編集済み: Raunak Gupta 2020 年 8 月 8 日
Hi,
As John mentioned in the comments you can use element wise multiplication for above equation format. The data structure in which the data is stored can either be in struct format or in vector format (If it's in any other format you can access the individual value appropriately). Finally, you may bring down each variable a,b,c in vector format and can apply what John has suggested.
If the data is stored in different file format you can use this link to figure out how to import the data.

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by