Mohammad Monfared


Con actividad desde 2006

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

19 Preguntas
5 Respuestas

File Exchange

1 Archivo

CLASIFICACIÓN
8.231
of 297.503

REPUTACIÓN
5

CONTRIBUCIONES
19 Preguntas
5 Respuestas

ACEPTACIÓN DE RESPUESTAS
36.84%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
8.128 of 20.449

REPUTACIÓN
107

EVALUACIÓN MEDIA
2.00

CONTRIBUCIONES
1 Archivo

DESCARGAS
1

ALL TIME DESCARGAS
1070

CLASIFICACIÓN

of 159.017

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Submission
  • 3 Month Streak
  • Thankful Level 3
  • Knowledgeable Level 1
  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


How to know a function triggered a warning
Hi everybody, In my code, I'd like to know, programmatically, whether a function ('nlinfit') produced a warning or not. How c...

más de 9 años hace | 0 respuestas | 0

0

respuestas

Pregunta


How to fit a log-normal dist. to data in x-data and y-data format using 'lognfit'?
Hi, This is the problem: I have a set of points to which I'd like to fit the log-normal distribution. I have two vectors for ...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How the 'adaptmesh' is supposed to work when there is solution only by refining the mesh?
Hi, The problem I'm struggling with is a nonlinear elliptic pde. working with 'pdenonlin', it converges to the solution only ...

casi 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


'step size too small' when solving with 'pdenonlin' even when the initial guess of solution is almost excatly the solution!
Hi, I'm trying to solve an elliptic PDE using 'pdenonlin' function. I can get the solution in 1-D by another approach but whe...

casi 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Mesh size largly differes in 'parabolic' and 'pdenonlin' functions to give a solution.
Hi, I'm going to solve an elliptic PDE where the gradient of solution is extremely large in a specific portion of the domain....

casi 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


PDE Coefficients in the pde toolbox
Hi, I'm going to solve the following elliptic equation in a domain which consists of two materials: <</matlabcentral/a...

alrededor de 11 años hace | 0 respuestas | 0

0

respuestas

Respondida
Mass balance issue when solving an elliptic diffusion problem using pde toolbox
The issue was that the Jacobian has to be calculated using 'full' parameter, not 'fixed' or 'lump' and decreasing th 'Tol' in pd...

alrededor de 11 años hace | 0

| aceptada

Pregunta


problem in calculating flux in pde toolbox
Hi everybody, I'm trying to calculate and plot the flux terms in the following equation in the pde toolbox: <</matlabcen...

alrededor de 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Mass balance issue when solving an elliptic diffusion problem using pde toolbox
Hi I'm trying to solve a diffusion like, elliptic equation using pde toolbox. I used 'pednonlin' function but the answer I ge...

alrededor de 11 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to calculate gradiant at mesh points in pde toolbox and one more question?
I'm going to calculate grad(u) at mesh points in pde toolbox. Is this a good way? : [ux1,uy1] = pdegrad(p,t,u) ; ux = pdep...

alrededor de 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


How to generate regular mesh in pde toolbox? (in a mutiple subdomain geometry)
hi everybody, I'd like to generate regular mesh on the following domain: <</matlabcentral/answers/uploaded_files/6807/...

alrededor de 11 años hace | 1 respuesta | 0

1

respuesta

Respondida
How to find position of something
Suppose you have a column or row vector named 'A', find(isnan(A))

más de 11 años hace | 0

Pregunta


Is it possible to run ODE solver till the answer gets a specified value?
Hi, How can I stop the solving process of an ode when the solution reaches a specified value? Is it possible at all? th...

más de 11 años hace | 0 respuestas | 0

0

respuestas

Respondida
How Can I union four non-equal size vector in matlab?
To union two vectors they should be of the same kind, row vectors or column vectors. if they are row vectors; v=[v1, v2]...

más de 11 años hace | 0

Pregunta


Is there a straight way to solve a general first order PDE using matlab (or the pde toolbox)?
Need to solve a nonlinear 1st order pde, and have searched matlab documentations with no success. PDE toolbox has suitable f...

más de 11 años hace | 0 respuestas | 1

0

respuestas

Respondida
Collapsing a cell array of cell arrays and matrices into a cell array of mixed data types
Hi, How about this simple code: for i=1:250 for j=1:189 DataCols_new{j,i} = DataCols{1,i}(j,1) ; en...

más de 11 años hace | 0

Respondida
How to replace elements different than 0 and different than NaN to 1?
Let the matrix name, A, so this is done by: A(xor((A~=0),isnan(A))) = 1 ;

más de 11 años hace | 0

| aceptada

Pregunta


Need help finding the right PDE coefficients of this equation
Hi everybody, I can't figure out what are the coefficients of this equation in comparison with PDE toolbox parabolic equation...

más de 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Strange behaviour of pde-toolbox in labeling or a bug?
Hi, I'm new to pde-toolbox but this is kinda weird to me: let's draw some rectangles in PDE Tollbox like: <</matlabce...

más de 11 años hace | 2 respuestas | 0

2

respuestas

Pregunta


What are coefficients of this PDE compared to pde-toolbox (parabolic) syntax?
Hi, my equation of interest is: <</matlabcentral/answers/uploaded_files/648/eq1.JPG>> what are the coefficients of th...

más de 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Nonlinear system of equations with constrains
Hi every body, I have 4 nonlinear equations and 4 unknowns to be solved. but my unknowns are constrained. So I can't use some...

más de 11 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How ode-family functions approximate solution at specified tspan values?
I'm trying to model a software package DE solving scheme using Matlab. I need to know how ode-family functions approximate the a...

más de 11 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Problem with 'datevec' function ... I think a bug!
First I should denote my Matlab version is R2011a. It's simple: running the simple code below ans = datevec(input,'dd/mm/yyy...

más de 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to create non-repetitive random integers
Hi, As the title suggests I want to create non-repetitive random integers but don't know how to... say 70 integers ranging f...

casi 13 años hace | 3 respuestas | 0

3

respuestas

Enviada


light deflection in a glass sphere
Observing the action of parallel light beams facing with a glass sphere.

casi 19 años hace | 1 descarga |

2.0 / 5