Info
此问题已关闭。 请重新打开它进行编辑或回答。
How do I express the error values from math formula with matlab code
1 次查看(过去 30 天)
显示 更早的评论
The formula is (x1-x2)/(10-2*x1)
And I want to say x1 is not able to equal to 5 in matlab code, how do I express this in codes?
1 个评论
KALYAN ACHARJYA
2019-5-8
编辑:KALYAN ACHARJYA
2019-5-8
x1=input('Enter x1: ');
x2=input('Enter x2: ');
if x1==5
disp('Invalid x1 value');
else
fun=(x1-x2)/(10-2*x1);
fprintf('The Function value is: %f',fun);
end
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!