Community Profile

photo

goodwin membreve


Last seen: mehr als 3 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Statistiken

  • Thankful Level 2
  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 3 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

mehr als 3 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 3 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

mehr als 3 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How do you store input to a list?
ecprompt='Counts of Equation?'; eqcount=inputdlg(ecprompt); eqprompt='Enter Equation (from highest to lowest degree):'; equ...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort