Transpose x from a row vector to a column vector using the transpose operator. The program is prompting the x does not have correct values. the code i have entered is below

조회 수: 4 (최근 30일)
TASK
Transpose x from a row vector to a column vector using the transpose operator.
The code i wrote is the following
x=[1:5;]
x=x'
Test Results:
Incorrect!
Does x have five elements? ok
Is x a column vector? ok
Does x have the correct values? Not correct

답변 (2개)

Alan Stevens
Alan Stevens 2021년 6월 9일
You probably meant
x = [1:5]; % ie the ; is after the ]
However, it seems to work ok for me as you wrote it!

Hammad Ur Rahman
Hammad Ur Rahman 2021년 6월 23일
write
x=x'

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by