필터 지우기
필터 지우기

Matlab Robot

조회 수: 1 (최근 30일)
Rodolfo Enriquez
Rodolfo Enriquez 2012년 4월 10일
why i cant do this?
L1=Link(0 1 0 0 0)
L2=Link(0 1 0 0 0)
L3=Link(0 1 0 0 0)
r=robot([1 1 1])
[Merged question from additional post]
why i cant use r=robot[(1 1 1)] in matlab?

답변 (2개)

Walter Roberson
Walter Roberson 2012년 4월 10일
L1=Link(0 1 0 0 0)
is not valid syntax. You need either
L1=Link(0, 1, 0, 0, 0)
or
L1=Link([0 1 0 0 0])
Or you could use
L1=Link([0, 1, 0, 0, 0])
which is equivalent to the [0 1 0 0 0] version.

Walter Roberson
Walter Roberson 2012년 4월 10일
Mathworks does not appear to supply any routine named "robot" (except for java.robot) Have you installed additional software that has a function or class of that name? If so then please post a link to it, and please indicate what error message you are receiving.

카테고리

Help CenterFile Exchange에서 Converters (Low Power)에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by