photo

Drishti Jain


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
5 Answers

RANK
6,274
of 300,364

REPUTATION
8

CONTRIBUTIONS
0 Questions
5 Answers

ANSWER ACCEPTANCE
0.00%

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

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
which is the online training duration?
Matlab Onramp has a duration of about 2 hours while for Simulink Onramp, it is approx. 3 hours.

5 years ago | 0

Answered
How do I save my MATLAB work and notes onto a PDF file or Google Doc?
Try this for PDF: publish('filename.m','pdf')

5 years ago | 0

| accepted

Answered
To find the meaning of this code
It solves two differential equations and plots the solution for them. [t,x]=ode45(@rlcckt,[0 1],[0 0]); ode45 integrates the...

5 years ago | 0

| accepted

Answered
How can I make variable value instead of constant one?
You can use a 'for' loop. for z=1:100 C1(z) = (2*exp((h-x(z))/(i.*e)))/(1+2*exp((h-x(z))/(i.*e))+exp(((2*h)-(2*x(z))-d)/(i.*e)...

5 years ago | 0

Answered
Change data type of a table column into datetime?
You can use datetime: https://in.mathworks.com/help/matlab/ref/datetime.html e.g- tm='10:14:25' new_tm= datetime(tm,'Format',...

5 years ago | 0