thank you for help

3 次查看(过去 30 天)
Victoria Billips
Victoria Billips 2015-11-17
I have
function fps = ktsTOfps(kts)
%fps converts speed given in units of knots to speed in units of feet per
%second
% input variable: kts
% output variable: fps
% calling sequence: fps = ktsTOfps(kts)
% calculating fps
fps=kts*1.687809857;
kts=400;
fps = ktsTOfps(kts)
I keep getting the error "Index exceeds matrix dimensions." I don't really understand why this is popping up or where I need to go from here?
  2 个评论
Star Strider
Star Strider 2015-11-17
One knot is 1.150779448023543 U.S. statute miles, or 6076.115485564304 U.S. feet, or more properly, 1.852 kilometers.
Rena Berman
Rena Berman 2017-1-12
(Answers Dev) Restored question.

请先登录,再进行评论。

采纳的回答

Geoff Hayes
Geoff Hayes 2015-11-17
Victoria - the error message is telling you that you are trying to access an element in an array (or matrix) using an index that exceeds the size of the array. As your function ktsTOfps doesn't do any indexing into an array, I wonder if the problem is when you call the function at
fps = ktsTOfps(its)
Could it be that you have created a local variable with the same name as ktsTOfps? In the Command Window type
which -all ktsTOfps
What do you see? You may observe something similar to
ktsTOfps is a variable.
/Users/geoffhayes/Documents/MATLAB/ktsTOfps.m % Shadowed
which would indicate that you do have a local variable (in the base workspace) that needs to be deleted.
  1 个评论
Victoria Billips
Victoria Billips 2015-11-17
It was the last thing you stated. I finally noticed about 29 minutes after posting the question on here. I cleared my workspace and it worked perfectly. Thank you though!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by