
Deepa Maheshvare
Statistics
RANK
6.083
of 262.927
REPUTATION
6
CONTRIBUTIONS
158 Questions
3 Answers
ANSWER ACCEPTANCE
51.9%
VOTES RECEIVED
6
RANK
of 17.996
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 113.893
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
Content Feed
Question
Setting up a problem in linprog
This is a follow up to my previous question posted here I want to define an absolute error loss function of the following for...
ongeveer een maand ago | 1 answer | 0
1
answerQuestion
Finding weighted sum of multiple curves
I have a dataset with values of multiple curves. An example plot is shown below. I want to scale the curves (move up/down) so...
ongeveer een maand ago | 1 answer | 0
1
answerQuestion
Minimize distance between curves
I have a dataset with values of multiple curves. An example plot is shown below. I want to scale the curves so that all curves ...
ongeveer een maand ago | 1 answer | 0
1
answerQuestion
Need help with converting Mathematica code to MATLAB code
I have a dataset with values of multiple curves. An example plot is shown below. I want to scale the curves (up/down) so that a...
ongeveer een maand ago | 0 answers | 0
0
answersQuestion
Computing the overlapping area of curves
I have a set of datapoints corresponding to 5 curves. scale = 1.5; x1 = [0,4,6,10,15,20]*scale; y1 = [18,17.5,13,12,8,10]; ...
ongeveer een maand ago | 1 answer | 0
1
answerQuestion
Fit a spline function to a set of data points
Hi All, I have a set of coordinate points x= [0,4,6,10,15,20] y = [18,17.5,13,12,8,10] I want to fit a spline function. C...
ongeveer 2 maanden ago | 2 answers | 0
2
answersQuestion
Minimize distance between curves
I have a dataset with values of multiple curves. An example plot is shown below. I want to shift the curves (up/down) so that a...
ongeveer 2 maanden ago | 1 answer | 0
1
answerQuestion
Finding the indices of the elements of one array in another
Given two vectors A and B, I want to find the index of elements of B in A I tried A = ["G1", "V2", "G3", "G4", "V1"] B = ["...
7 maanden ago | 1 answer | 0
1
answerQuestion
Clearing and reloading updates form initialization file in a class
I'm trying to set the properties of a class by loading the contents of the initialization file (contains user-defined inputs) in...
8 maanden ago | 0 answers | 0
0
answersQuestion
Add new line in .ini file
I'm trying to set the properties of a class by loading the contents of the initialization file in a class method. Source fo...
8 maanden ago | 0 answers | 0
0
answersQuestion
access data returned from a method of a class in other methods
I've the following class classdef setting SETTING Summary of this class goes here Detailed explanation goes h...
12 maanden ago | 1 answer | 0
1
answerQuestion
Create a struct from two cell arrays
I've the following cell arrays keys = 4×1 cell array {'n' } {'key12'} {'key13'} {'key14'} va...
12 maanden ago | 1 answer | 0
1
answerQuestion
Set the properties of a class by reading values from initialization file
This is a follow up to my previous question [here](https://in.mathworks.com/matlabcentral/answers/1437704-how-to-pass-a-class-to...
12 maanden ago | 2 answers | 0
2
answersQuestion
How to pass a class to MATLAB executable
This is a follow up to my previous here. I have the following script main.m >> function m = magicsquare n = setting.n;...
12 maanden ago | 1 answer | 0
1
answerQuestion
Application compiler: How do I pass a file as Command line Input type argument
I am using Application compiler for generating a standalone application. I'm following the documenttaion available here https...
ongeveer een jaar ago | 2 answers | 0
2
answersQuestion
Accessing properties in a class
I am trying to figure out if there is a way to set the value of variables defined in `classname` by calling the methods defined ...
ongeveer een jaar ago | 2 answers | 0
2
answersQuestion
defining properties in a class
I have the following class classdef classname properties (Constant) Number=1 end end I can change the valu...
ongeveer een jaar ago | 1 answer | 0
1
answerQuestion
Application compiler: Command line Input type options missing
I am using Application compiler for generating a standalone application. I'm following the documenttaion available here https...
ongeveer een jaar ago | 1 answer | 0
1
answerQuestion
MATLAB not initializing after launching
I am facing an issue after launching MATLAB. MATLAB initialization is too long more than an hour. I would like to know if this...
ongeveer een jaar ago | 1 answer | 0
1
answerQuestion
Availability of ode32tb
Hi All, May I know in which version of MATLAB ode32tb is available?
ongeveer een jaar ago | 2 answers | 0
2
answersQuestion
Setting up ode solver options to speed up compute time
Hi All, I'm specifying the `'JPattern', sparsity_pattern` in the ode options to speed up the compute time of my actual syste...
ongeveer een jaar ago | 0 answers | 0
0
answersQuestion
Fit an exponential function to time-series data
Hi All, I have a time series data and I would like to fit an exponential curve using the following expression to the data point...
meer dan een jaar ago | 1 answer | 0
1
answerQuestion
Finding the time in which a specific value is reached in time-series data when peaks are found
I would like to find the time instant at which a certain value is reached in a time-series data with noise. If there are no peak...
meer dan een jaar ago | 1 answer | 0
1
answerQuestion
Requested array exceeds maximum array size preference
I get the following error while trying to call odenumjac. Requested 35036x35036 (9.1GB) array exceeds maximum array size pre...
meer dan een jaar ago | 0 answers | 0
0
answersQuestion
how can I vectorize my code when multiple variables are present
Hi All, This is a follow up to my previous question here. I'm trying to figure out how to vectorize my code when multiple vari...
meer dan een jaar ago | 1 answer | 0
1
answerQuestion
issue with vectorization of ode
Hi All, This is a follow up to my previous question here. I'm trying run the code below. global mat1 mat2 k k = 2; mat1=[ ...
meer dan een jaar ago | 0 answers | 0
0
answersQuestion
What's going wrong in the vectorization of my ode function?
Hi All, I'm trying to setting `vectorization` = 'on' in the ode settings and I clearly don't understand what's going wrong g...
meer dan een jaar ago | 1 answer | 0
1
answerQuestion
finding non-zero entries of a matrix
Hi All, I've 2 matrices, A and B. A = [1 0 2; 3 4 5; 0 0 0]; B = [0 0 0; 1 0 0; 1 1 1]; I want to generate a matrix C ...
meer dan een jaar ago | 1 answer | 0
1
answerQuestion
Issue while computing jacobian
Hi All, This is a follow up to my question posted here. I'm trying to find the sparsity pattern of a jacobian in the followin...
meer dan een jaar ago | 1 answer | 0
1
answerQuestion
Why am I not able to run this code?
global mat1 mat2 mat1=[ 1 -2 1 0 0 0 0 0 0 0; 0 1 -2 1 0 ...
meer dan een jaar ago | 1 answer | 0