Azzera filtri
Azzera filtri

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

1 visualizzazione (ultimi 30 giorni)
khitam
khitam il 3 Set 2022
Commentato: khitam il 14 Set 2022
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';

Risposta accettata

Chunru
Chunru il 3 Set 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

Più risposte (0)

Categorie

Scopri di più su Workspace Variables and MAT-Files in Help Center e File Exchange

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by