how can i write a for loop for g=[2 5 6 8 9]

1 回表示 (過去 30 日間)
kavya kolipakula
kavya kolipakula 2019 年 2 月 25 日
編集済み: Stephan 2019 年 2 月 25 日
i have g=[2 5 6 8 9]
i want to write a 'for loop' to increment g
g changes with respect to considered system
for i=1:g
for j=1:14
something
end

回答 (1 件)

Stephan
Stephan 2019 年 2 月 25 日
編集済み: Stephan 2019 年 2 月 25 日
Hi,
use numel function:
for i = 1:numel(g)
Best regards
Stephan
  5 件のコメント
kavya kolipakula
kavya kolipakula 2019 年 2 月 25 日
g is generator bus data taken from 14bus sytem
in for loop i used power injection equations. my requirement is power injections at generator buses
Stephan
Stephan 2019 年 2 月 25 日
編集済み: Stephan 2019 年 2 月 25 日
Can you explain a bit more clear? Usually if a vector changes in length, numel is the right choice. If this is not what you want to do, please explain.

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

カテゴリ

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