Function not defined but it is in fact defined

4 visualizzazioni (ultimi 30 giorni)
function [fortynines,sevens,ones]=converttobase7(x) fortynines = floor((x)/(7^2)); sevens = floor((fortynines)/(7^1)); ones = floor((x)-(7^2));

Risposte (1)

John D'Errico
John D'Errico il 8 Ott 2018
Did you actually save it as an m-file?
Is it saved to your search path? NOT saved in one of the MATLAB supplied directories?
By the way, it has several bugs in it anyway, so it won't compute a correct base 7 result. But that is irrelevant at the moment, since you are not even to the point of running the code.

Categorie

Scopri di più su Dynamic System Models in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by