column vector with specific entries for first 4 terms

조회 수: 1 (최근 30일)
Vincent Gambuzza
Vincent Gambuzza 2019년 3월 14일
편집: madhan ravi 2019년 3월 23일
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!

답변 (1개)

madhan ravi
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 CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by