Error in repeat for loop
4 次查看(过去 30 天)
显示 更早的评论
while
switch Vehicle Type
case{'compact','Compact'}
fprintf('1')
break
case{'midsize','Midsize'}
fprintf('2')
break
case{'truck','Truck'}
fprintf('3')
break
case{'industrial','Industrial'}
fprintf('4')
break
case{'military','Military'}
fprintf('4')
break
otherwise
fprintf('Vehicle type is not recognized. The program stops. Rerun the program again')
end
end
ive been trying to use the j nxm to get this loop to run five times
2 个评论
Jon
2021-11-15
You don't seem to have your whole code here to show the problem. There is no termination condition following the while and nothing about the "j nxm" you mention at bottom of your question. By the way if you use the Code button on the MATLAB answer toolbar you can cut and paste your code into your question and it will be nicely formatted and ready for someone else to copy and try
Sahil Jain
2021-11-18
Could you provide the following information?
- What is the termination condition for the "while" loop?
- What does "j nxm" refer to?
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!