input equation from user
古いコメントを表示
Hi, I am a new user for MATLAB and I have R2010a version. I want to write a program where user should be able to enter euqation as input. e.g. : 5x^2 + 2x =8. And once the equation is fed in, I want to find out value of the equation for a perticular x value.
Please help.
採用された回答
その他の回答 (2 件)
Manjeet Singh
2016 年 4 月 5 日
編集済み: Stephen23
2016 年 6 月 24 日
str = input('Give an equation in x and y: ','s'); % the user types equation in form of x and y
f = inline(str,'x','y') % This gives function in form of f(x,y) $ both value of x and y can be put like f(2,3)
1 件のコメント
Sourin Dey
2016 年 6 月 24 日
Can you kindly show me the way to read the coefficients from the input equation? (The equation will be taken using input function)
Mohammed Alrajeb
2019 年 8 月 9 日
0 投票
hi every one
i need to your help
i need to enter 4 input (decimal number) and convert to binary number 32bit how can do that?
カテゴリ
ヘルプ センター および File Exchange で Variables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!