Clear Filters
Clear Filters

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

1 view (last 30 days)
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';

Accepted Answer

Chunru
Chunru on 3 Sep 2022
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

More Answers (0)

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!