Community Profile

photo

Pravin Jagtap

MathWorks

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

Followers: 0   Following: 0

I am working as an Application Support Engineer in MathWorks.

My research work includes development of Parallel Algorithms using API's like openMP, MPI -Message Passing Interface, GPU-cuda for computational fluid dynamics (CFD).

Disclaimer: Any advice or opinions here are my own, and in no way reflects that of MathWorks.

統計

  • Knowledgeable Level 3
  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
color coding error_ellipse
'error_ellipse' is one of the several submissions in MATLAB File Exchange on MATLAB Central which is a forum for our product us...

4年弱 前 | 0

回答済み
mean, standard deviance, variance simplify the code if possible?
You can read the values from the matrix and calculate the mean in one line to clean up some code. For examples, replace ...

4年弱 前 | 0

回答済み
Storing error values every iteration
Hello Griffin, Please refer to the last two lines of the code: err_every_iter = iter_error; % iter_error is stored here err...

4年弱 前 | 0

回答済み
How to plot a differential equation?
Hello, You need to save the result of 'dsolve' and use it for plotting. Refer to the following code which will help you under...

4年弱 前 | 0

回答済み
How do I connect data points with a line?
Hello Byeongchan, It is not clear that what you want to achieve from your code. Especially, increment of iterator 'i' inside ...

4年弱 前 | 0

回答済み
fplot change plot axes (y versus x)
Hello Giorgia, 'fplot' is mostly used to plot a curve defined by y=f(x) where 'x' is input and 'y' is output which is the sta...

4年弱 前 | 0

回答済み
use of polyxpoly to find roots
Hello Vipul, Refer to the following documentation for understanding how 'ployxpoly' works: https://www.mathworks.com/help/ma...

4年弱 前 | 0

回答済み
How can I solve this question
Hello, As mentioned in the above comments, there are enough hints in question. This exercise will benefit you in understanding ...

4年弱 前 | 0

回答済み
How can I connect my equations for a shear/bending moment diagram?
Hello, I would recommend you to take a look at this question which deals with the similar issue of plotting shear force and b...

4年弱 前 | 0

回答済み
Figuring out the stimulus of FitzHugh Nagumo equations with ode45
Hello Kate, Refer to the following documentation link to understand how to solve system of differential equations. Also refer t...

約4年 前 | 0

回答済み
ode45 for Thwaites Method
Hello Zachary, Refer to the following documentation link of ‘ode45’ function. This will give your better insights into how to u...

約4年 前 | 0

回答済み
How can I get this function to run with a Tolerance of 10^-7 while keeping the same numerical outputs
Hello Savana, I am assuming that the above question in the extension of your earlier question (https://www.mathworks.com/matlab...

約4年 前 | 0

回答済み
How to get this help file to run
Hello Savana, The issue which you are facing is not clear from your question and code. I found a similar question you posted ...

約4年 前 | 0

回答済み
Numerical simulation of population growth
Hello Clementine, As mentioned above, if you are dealing with ODE refer to following documentation of 'ode45' to solve the ODE:...

約4年 前 | 0

回答済み
How to input this Gauss-seidel problem into the following code( code might need work)
Hello Steven, I am assuming that you are using the code written by someone else for your homework question. For your problem,...

約4年 前 | 0

回答済み
How do I set up code for an RK4 Method?
Hello Christina, Refer to following MATLAB Answer: https://www.mathworks.com/matlabcentral/answers/434525-how-to-create-rung...

約4年 前 | 0

回答済み
Euler method and Graph
Hello Nasir, Refer to the following function which takes ‘dt’ and ‘y0’ as an input argument and returns the ‘y’ as solution f...

約4年 前 | 0

回答済み
algorithm for computing ? is due to Archimedes: how steps can be repeated
Hello Anastasia, As mentioned in the above comments, I would recommend you to follow the docum...

約4年 前 | 0

回答済み
Improving performance of a complex for loop
Hello Rafi, From your code and data structure used it is clear that there are two for loops: Outside for loops iterates over t...

約4年 前 | 0

| 採用済み

回答済み
lsqnonlin with vector input and multiple equations.
Hello Emma, The error mentioned is caused because of the way 'function handle' is used (steadystate=@(x) f(x);). In your case...

約4年 前 | 0

回答済み
fminsearch giving results below initialisation point
Hello Udi, I think this can happen because it depends on the function and starting point (Since 'fminseach' function uses heu...

約4年 前 | 1

| 採用済み

回答済み
Is there a way to get the confidence bounds when fitting curves using optimisation toolbox
Hello Kieran, As you noted correctly curve fitting toolbox ('fit') gives the 'goodness of fit' metric whereas optimization ap...

約4年 前 | 0

回答済み
Coupled ODE Solver Producing Unexpected Graph
Hello Brooke, Please refer to following documentation for solving coupled system of ODEs https://www.mathworks.com/help/symb...

約4年 前 | 0

回答済み
How do convert the following set of time dependent differential equations into a set of discrete equations? Please provide code.
Hello Varun, I am assuming the constant time step 'dt'. Please refer following snipet to get an idea and write the code x(k+...

約4年 前 | 0

回答済み
1D PDE in Matlab with pdepe, first order
Hello JulianK, ‘pdepe’ is used to solve system of parabolic and elliptic PDEs with one temporal and one spatial variable (Make ...

約4年 前 | 0

回答済み
GPU coder : When I use GPU coder to any function, Do I need to type coder.gpu.kernelfun in all subfunctions in the main function?
Hello Lim, I think, Dynamic kernel invocation i.e calling kernels from within kernels is not supported by GPU coder yet. Theref...

4年以上 前 | 0

| 採用済み

回答済み
Plotting Streamlines that start from the origin for each streamline
Hello Omar, I suggest you to refer this documentataion for plotting streamlines. ~Pravin

4年以上 前 | 0

回答済み
How do I create a function to select the right excel table and data from this table with given parameters?
Hello, Refer following code to load the data in MATLAB workspace: [~,sheet_name]=xlsfinfo('Book1.xlsx'); % 'Book1.xlsx' is t...

4年以上 前 | 0

回答済み
Write a function file finds real roots for any function f(x).
Hello Timothy, Please refer to following documentation which may help you in writing the function: https://www.mathworks.com...

4年以上 前 | 0

回答済み
Can someone help us modify our current code in order to store all of the desired output variables as columns of a single file?
Hello Steve, The objective mentioned in the question can be easily achieved by using the ‘save’ command. Refer following exam...

4年以上 前 | 0

さらに読み込む