Create a column vector with elements counting down from 200 to 0 in increments of 5

조회 수: 3 (최근 30일)
I created the vector, C= [200:-5:0] and I git an error that reads, Variable C must have size[41 1]. It is currently of size [1 41]

답변 (1개)

Clay Swackhamer
Clay Swackhamer 2022년 8월 1일
Try transposing your output to flip it from a row vector (list of numbers going horizontally) to a column (list of numbers going vertically) like this:
C = C'

카테고리

Help CenterFile Exchange에서 Simulink에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by