![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/20805306_1610086924241_DEF.jpg)
Jagadeesh Korukonda
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
35.350
of 297.016
REPUTACIÓN
1
CONTRIBUCIONES
16 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
62.5%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
12.341 of 20.419
REPUTACIÓN
30
EVALUACIÓN MEDIA
5.00
CONTRIBUCIONES
4 Archivos
DESCARGAS
8
ALL TIME DESCARGAS
135
CLASIFICACIÓN
22.068
of 157.725
CONTRIBUCIONES
0 Problemas
14 Soluciones
PUNTUACIÓN
220
NÚMERO DE INSIGNIAS
2
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Enviada
Latex plotstyle
This code converts standard Matlab figures into Latex style with one click.
alrededor de 2 meses hace | 4 descargas |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/9b5fc240-0462-4948-aa4c-3aa1938f9aff/f75fcdc6-288b-4482-bed7-fb2a779ec549/images/1693904474.png)
Pregunta
Issue in line plot while saving in vector graphics
I had a matlab figure, it contains 4 lines. When I'm trying to save as pdf/eps/emf, one of the line's resolution is going crazy....
alrededor de 1 año hace | 1 respuesta | 0
1
respuestaPregunta
Solving Inequalities using symbolic tool box
When I try to solve simple inequality let say the solution is but matlab is giving wierd answers syms x solve(x^2 - 2...
más de 1 año hace | 1 respuesta | 0
1
respuestaEnviada
Extract data from line plots in a MATLAB Figure
This function will extract data from the given axes of the Matlab figure.
más de 1 año hace | 1 descarga |
Pregunta
How to assign different values to different variables at once using deal() function?
I had some values which are in a single vector named "param". Let us consider it has "n" elements. I want to assign this "n" val...
más de 1 año hace | 1 respuesta | 0
1
respuestaEnviada
Plot in Latex format
This function extends the capabilities of the plot function in Matlab and enhances the visual output of a basic plot.
casi 2 años hace | 1 descarga |
Pregunta
How to solve PDE with two regions
Suppose I've a PDE which is valid in two regions. Can we solve this eqns with pdepe solver?
alrededor de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
At max, how many systems of odes can we solve at once?
I need to solve the 5*n^2 system of odes at once. I got a solution till n = 61 (18605 ODEs). I want to know the maximum number ...
alrededor de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
How do I plot Streamlines of velocity components of spherical coordinate system?
I solved Navier stokes in Spherical coordinates and I got velocity field inside a sphere i.e If I plot contours using the ...
alrededor de 2 años hace | 1 respuesta | 1
1
respuestaEnviada
Guass Jordan elimination Method
This code is used to find solution for linear system AX=B or used to find the inverse of a matrix
más de 2 años hace | 2 descargas |
Pregunta
can we plot convergence of a ode solver same as fsolve?
Using 'fsolve', we can use the below code to plot the convergence. x0 = [0,0]; opts = optimoptions(@fsolve,'Display','none','P...
más de 2 años hace | 2 respuestas | 0
2
respuestasPregunta
How to limit fsolve to find solution in Real numbers domain
Suppose, If I have some set of non-linear equations. I want to solve those equations with fsolve, but I want solution only in re...
más de 2 años hace | 1 respuesta | 0
1
respuestaResuelto
Longest run of consecutive numbers
Given a vector a, find the number(s) that is/are repeated consecutively most often. For example, if you have a = [1 2 2 2 1 ...
más de 2 años hace
Resuelto
Rescale Scores
Each column (except last) of matrix |X| contains students' scores in a course assignment or a test. The last column has a weight...
más de 2 años hace
Resuelto
Calculate Inner Product
Given two input matrices, |x| and |y|, check if their inner dimensions match. * If they match, create an output variable |z|...
más de 2 años hace
Resuelto
Find MPG of Lightest Cars
The file |cars.mat| contains a table named |cars| with variables |Model|, |MPG|, |Horsepower|, |Weight|, and |Acceleration| for ...
más de 2 años hace
Resuelto
Find the Best Hotels
Given three input variables: * |hotels| - a list of hotel names * |ratings| - their ratings in a city * |cutoff| - the rat...
más de 2 años hace
Resuelto
Crop an Image
A grayscale image is represented as a matrix in MATLAB. Each matrix element represents a pixel in the image. An element value re...
más de 2 años hace
Resuelto
Calculate BMI
Given a matrix |hw| (height and weight) with two columns, calculate BMI using these formulas: * 1 kilogram = 2.2 pounds * 1 ...
más de 2 años hace
Resuelto
Plot Damped Sinusoid
Given two vectors |t| and |y|, make a plot containing a blue ( |b| ) dashed ( |--| ) line of |y| versus |t|. Mark the minimum...
más de 2 años hace
Resuelto
Calculate a Damped Sinusoid
The equation of a damped sinusoid can be written as |y = A.ⅇ^(-λt)*cos(2πft)| where |A|, |λ|, and |f| ...
más de 2 años hace
Resuelto
Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...
más de 2 años hace
Resuelto
Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....
más de 2 años hace
Resuelto
Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...
más de 2 años hace
Resuelto
Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...
más de 2 años hace
Resuelto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
más de 2 años hace
Pregunta
Plotting the function on a Sphere?
Let me explain, what I'm actually solving. I'm solving Diffusion-Reaction equation(3D) in spherical coordinates. ...
más de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
How to plot a data in spherical coordinates?
Let me explain, what I'm actually solving. I'm solving Diffusion-Reaction equation(2D) in spherical coordinates(axis-symmetric ...
más de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
how do I swap both axes in the current plot
I have symbollic function, I'm plotting that function using fplot syms y U = y^2/2 - (3*y)/4; yrange = [0,1]; fplot(U,yr...
más de 2 años hace | 2 respuestas | 0
2
respuestasPregunta
How to add color bar for streamslice plot?
i want to know intensity of streamlines, so i need color bar for streamslice plot. can anyone help in this regard. clc, clear...
más de 2 años hace | 1 respuesta | 0