필터 지우기
필터 지우기

I get this error bellow >> how can i fix it ?

조회 수: 1 (최근 30일)
khitam
khitam 2022년 9월 3일
댓글: khitam 2022년 9월 14일
error : getDesiredStateFromTrajectory
Not enough input arguments.
Error in getDesiredStateFromTrajectory (line 5)
coefficient = coefficient';
code :
function [desire_state] = getDesiredStateFromTrajectory(coefficient, time_stamp)
%GETDESIREDSTATEFROMTRAJECTORY Summary of this function goes here
% Detailed explanation goes here
desire_state = zeros(1, 16);
coefficient = coefficient';

채택된 답변

Chunru
Chunru 2022년 9월 3일
getDesiredStateFromTrajectory([1 2 3 4], 123) % call the function by passing the values
ans = 1×16
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
% Use this as a local function or save in a separate file
function [desire_state] = getDesiredStateFromTrajectory(coefficient, time_stamp)
%GETDESIREDSTATEFROMTRAJECTORY Summary of this function goes here
% Detailed explanation goes here
desire_state = zeros(1, 16);
coefficient = coefficient';
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by