Function not defined but it is in fact defined

8 次查看(过去 30 天)
function [fortynines,sevens,ones]=converttobase7(x) fortynines = floor((x)/(7^2)); sevens = floor((fortynines)/(7^1)); ones = floor((x)-(7^2));

回答(1 个)

John D'Errico
John D'Errico 2018-10-8
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.

类别

Help CenterFile Exchange 中查找有关 Dynamic System Models 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by