lottopick(m) Undefined function or variable 'john'.

4 visualizzazioni (ultimi 30 giorni)
i have to create a random number generator. i think i got a code that would work but im having issues! when i call on the funciton, ie. lottopick(john),
it starts the function code but immediatley i get error undefined function or variable 'john'.
this is the code i have written thus far
function []=lottopick(name)
lotto = randi(54, [1 6 ]);
lotto=sort(lotto);
fprintf('%s, your lotto picks are %d %d %d %d %d %d \n', name, lotto)
end

Risposta accettata

Star Strider
Star Strider il 25 Giu 2019
You most likely need to enclose the name in single quotes:
lottopick('john'),

Più risposte (0)

Categorie

Scopri di più su Mathematics in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by