Function 'range_calculator' has already been declared within this scope.
显示 更早的评论
I have the following driver file named 'Program 6':
[x]=range_calculator(a,b)
and the following function file named 'range_calculator'
g=9.9;
function[x]=range_calculator(a,b)
x= ((b^2)*sin(2*a))/g;
end
and I keep getting the error message above. Should I change the file name?
Thanks,
1 个评论
Rik
2020-3-29
It looks like you are trying to run a script that contains an internal function with the same name. You should not put any code before the first function definition if you intend a file to work as a function.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!