Function not defined but it is in fact defined
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
function [fortynines,sevens,ones]=converttobase7(x) fortynines = floor((x)/(7^2)); sevens = floor((fortynines)/(7^1)); ones = floor((x)-(7^2));
0 comentarios
Respuestas (1)
John D'Errico
el 8 de Oct. de 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.
0 comentarios
Ver también
Categorías
Más información sobre Dynamic System Models en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!