column vector with specific entries for first 4 terms
4 ビュー (過去 30 日間)
古いコメントを表示
I need to make a 16x1 column vecor that is in the following form:
coeff = [-x;-2x;-3x;-4x;0;0;0;0;0;0;0;0;0;0;0;0]
help would be greatly apprecited!
thanks!
0 件のコメント
回答 (1 件)
madhan ravi
2019 年 3 月 15 日
編集済み: madhan ravi
2019 年 3 月 23 日
syms x % just define x as symbolic variable
Coeff = sym(zeros(16,1));
Coeff(1:4) = (-(1:4).*x).'
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!