Info
此问题已关闭。 请重新打开它进行编辑或回答。
Stuck on rewriting program to use nested if constructs
4 次查看(过去 30 天)
显示 更早的评论

this is one of my homework problems that I'm currently stuck on. so far I have:

2 个评论
Rik
2018-11-12
What are you stuck on? Doesn't this work? What error are you getting? If you don't know how to use fprintf have you read its documentation?
Also note that you made a small typo:
if x>=0
if y>=0 % you have y>0
回答(2 个)
Guillaume
2018-11-12
For reference, one way to do this in matlab without any if at all, in just one line:
fun = x.^(1 + (x<0)) + y.^(1 + (y<0))
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!