photo

goodwin membreve


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

10 Questions
0 Answers

RANK
78,277
of 300,364

REPUTATION
0

CONTRIBUTIONS
10 Questions
0 Answers

ANSWER ACCEPTANCE
40.0%

VOTES RECEIVED
0

RANK
 of 20,934

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,407

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 0 answers | 0

0

answers

Question


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

5 years ago | 2 answers | 0

2

answers

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 0 answers | 0

0

answers

Question


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

5 years ago | 0 answers | 0

0

answers

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 1 answer | 0

1

answer