goodwin membreve
Followers: 0 Following: 0
Feeds
提问
How to put all input into one dialog box?
eqprompt='Enter Equation (e.g. 2*x^2+4*x+9):'; equation=inputdlg(eqprompt); eq=str2sym(equation); sym...
4 years 前 | 1 个回答 | 0
1
个回答提问
How to do partial function on input equations?
equn='Numerator:'; eqpn=inputdlg(equn); eqn=str2sym(eqpn); equd='Denominator:'; eqpd=inputdlg(equd); eqd=str2sym(eqpd); sy...
4 years 前 | 1 个回答 | 0
1
个回答提问
How to display two or more values in one fprintf line?
r=[1 3]; fprintf('The roots of the equation are %d and %d',r) How to make the display as "The roots of the equation are 1 and ...
4 years 前 | 1 个回答 | 0
1
个回答提问
How to find the coefficient of an input equation?
varprompt='Enter Variable:'; var=inputdlg(varprompt); in='input equation:'; inp=inputdlg(in); syms(symvar(inp)); ans=co...
4 years 前 | 0 个回答 | 0
0
个回答提问
Operator '==' is not supported for operands of type 'cell'.
eqprompt='Enter Equation (e.g. 2*x^2+4*x+9):'; equation=inputdlg(eqprompt); eq=str2sym(equation); sym...
4 years 前 | 2 个回答 | 0
2
个回答提问
How can i keep asking them the same inputdlg based on how many they want to input?
count='How many values do you want?'; vcount=inputdlg(count); eqprompt='Enter Values'; value(vcount)=inputdlg(eqprompt); e...
4 years 前 | 1 个回答 | 0
1
个回答提问
Can you guys just help me on how to start this program code? I'll do the rest.
So basically what this means is that i will make a code that can solves as many equations desired with these five operations...
4 years 前 | 0 个回答 | 0
0
个回答提问
How do you add two or more polynomials or equation? How do you store input values to a list or matrix?
eqprompt='Enter Equation (from highest to lowest degree):'; equation=inputdlg(eqprompt); This is all i got honestly... Basical...
4 years 前 | 0 个回答 | 0
0
个回答提问
How can you make an input to a symbolic variable?
varprompt='Enter Variable (space-separated):'; var=inputdlg(varprompt); syms(sym(string(var))); eqprompt='Enter Equation (f...
4 years 前 | 1 个回答 | 0
1
个回答提问
How do you store input to a list?
ecprompt='Counts of Equation?'; eqcount=inputdlg(ecprompt); eqprompt='Enter Equation (from highest to lowest degree):'; equ...
4 years 前 | 1 个回答 | 0