Community Profile

photo

goodwin membreve


Last seen: 3年以上 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

  • Thankful Level 2
  • Thankful Level 1

バッジを表示

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...

3年以上 前 | 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...

3年以上 前 | 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 ...

3年以上 前 | 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...

3年以上 前 | 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...

3年以上 前 | 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...

3年以上 前 | 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...

3年以上 前 | 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...

3年以上 前 | 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...

3年以上 前 | 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...

3年以上 前 | 1 件の回答 | 0

1

回答