photo

NILADRI SEKHAR MANDAL


Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB Answers

6 Questions
0 Answers

RANK
219,262
of 300,863

REPUTATION
0

CONTRIBUTIONS
6 Questions
0 Answers

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
0

RANK
 of 21,100

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 171,361

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

View by

Question


Solving Implicit differential differential equations.
I have been posed with the following problem of chemical engineering: dX/dz = (a*((1-X)/(1+X))^2)/Uo ...

9 years ago | 3 answers | 0

3

answers

Question


How can I convert the output of 'symbolic integration' into decimal?
syms x; f = (1-x)^-1; rsums(f,0,0.8); a= int(f,0,0.8); volume = 0.5*a/0.3; display('The volume of the reactor f...

10 years ago | 1 answer | 0

1

answer

Question


Is it possible to use ODE45 to solve a second order differential equation where we know y1(a) and y1(b)?
ODE45 can be used to solve 2nd order differential equations when the initial conditions are known. Can it be used to solve a 2nd...

10 years ago | 0 answers | 0

0

answers

Question


Can I plot semilogx, semilogy, loglog plots simultaneously by writing in code in a single m file?
I have the following code in an m file : x = linspace(0,10); y=x.^3; semilogx(x,y); semilogy(x,y); loglog(x,y);...

10 years ago | 1 answer | 0

1

answer

Question


Want an explanation to what this code does? "ax2h = get(ax2(1),'Children');"
I am writing a code to merge two plots and what I found on matlab community is the following code: fh1 = open('Plot1.fig');...

10 years ago | 1 answer | 0

1

answer

Question


How do you write x^2 = 2t in matlab? Or can we write x = (+-) sqrt(2*t)?
I want to plot two non-linear equations. One of them looks like this. How do I write the same in matlab?

10 years ago | 1 answer | 0

1

answer