統計
MATLAB Answers
0 質問
2 回答
ランク
of 171,279
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
I have a list of 120 elements in a column, and I need to sum each 12 elements and then sum together the next 12 so from the 120 values I will have 12 different sum values.
sum = 0; temp = 0; totalSum = []; for i = 1:length(c) sum = sum+c(i); temp = temp+1; if (temp == 12) ...
I have a list of 120 elements in a column, and I need to sum each 12 elements and then sum together the next 12 so from the 120 values I will have 12 different sum values.
sum = 0; temp = 0; totalSum = []; for i = 1:length(c) sum = sum+c(i); temp = temp+1; if (temp == 12) ...
6年弱 前 | 0
回答済み
How can I find 'Compare to Constant' Blocks by using find_system? When I go explicit to the 'Compare to Constant' Block, get_param('path of Compare to Constant','BlockType'); gives "SubSystem" and not "Compare To Constant". (Matlab R2010b))
@Robin Leuering ,you can use its parameters to find the block. syntax: find_system(sys.path{1,1},'MaskType','Compare To Consta...
How can I find 'Compare to Constant' Blocks by using find_system? When I go explicit to the 'Compare to Constant' Block, get_param('path of Compare to Constant','BlockType'); gives "SubSystem" and not "Compare To Constant". (Matlab R2010b))
@Robin Leuering ,you can use its parameters to find the block. syntax: find_system(sys.path{1,1},'MaskType','Compare To Consta...
6年弱 前 | 0

