Solving an Equation Using a Formula with an Increasing Level of Values
1 回表示 (過去 30 日間)
古いコメントを表示
There is a matrix, for each section you need to add a value, how can this be done?
v = [1 2 3 4] ;
iwant = repmat(v,6,1)
% formula v+0.5*cos(7)/pi % presented without multiplication by cosine and division by pi
iwant = 6×4
1.5 2.5 3.5 4.5
2 3 4 5
2.5 3.5 4.5 5.5
3 4 5 6
3.5 4.5 5.5 6.5
4 5 6 7
0 件のコメント
回答 (1 件)
Walter Roberson
2022 年 2 月 21 日
v = [1 2 3 4] ;
iwant = repmat(v,6,1);
iwant + (1:6).'/2
2 件のコメント
Walter Roberson
2022 年 2 月 21 日
We want to add 1/2 to the first row, 2/2 to the second row, 3/2 to the third row...
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!