
Deepa Maheshvare
Statistics
151 質問
3 回答
ランク
6,628
of 258,139
評価
5
貢献
151 質問
3 回答
回答採用率
50.99%
獲得投票数
5
ランク
of 110,300
貢献
0 問題
0 解答
スコア
0
バッジ数
0
貢献
0 投稿
貢献
0 パブリック チャネル
平均評価
貢献
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
質問
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 = ["...
4ヶ月 前 | 1 件の回答 | 0
1
回答質問
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...
5ヶ月 前 | 0 件の回答 | 0
0
回答質問
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...
5ヶ月 前 | 0 件の回答 | 0
0
回答質問
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...
9ヶ月 前 | 1 件の回答 | 0
1
回答質問
Create a struct from two cell arrays
I've the following cell arrays keys = 4×1 cell array {'n' } {'key12'} {'key13'} {'key14'} va...
9ヶ月 前 | 1 件の回答 | 0
1
回答質問
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...
9ヶ月 前 | 2 件の回答 | 0
2
回答質問
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;...
9ヶ月 前 | 1 件の回答 | 0
1
回答質問
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...
10ヶ月 前 | 2 件の回答 | 0
2
回答質問
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 ...
10ヶ月 前 | 2 件の回答 | 0
2
回答質問
defining properties in a class
I have the following class classdef classname properties (Constant) Number=1 end end I can change the valu...
10ヶ月 前 | 1 件の回答 | 0
1
回答質問
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...
10ヶ月 前 | 1 件の回答 | 0
1
回答質問
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...
11ヶ月 前 | 1 件の回答 | 0
1
回答質問
Availability of ode32tb
Hi All, May I know in which version of MATLAB ode32tb is available?
12ヶ月 前 | 2 件の回答 | 0
2
回答質問
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...
約1年 前 | 0 件の回答 | 0
0
回答質問
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...
約1年 前 | 1 件の回答 | 0
1
回答質問
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...
約1年 前 | 1 件の回答 | 0
1
回答質問
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...
約1年 前 | 0 件の回答 | 0
0
回答質問
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...
1年以上 前 | 1 件の回答 | 0
1
回答質問
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=[ ...
1年以上 前 | 0 件の回答 | 0
0
回答質問
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...
1年以上 前 | 1 件の回答 | 0
1
回答質問
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 ...
1年以上 前 | 1 件の回答 | 0
1
回答質問
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...
1年以上 前 | 1 件の回答 | 0
1
回答質問
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 ...
1年以上 前 | 1 件の回答 | 0
1
回答質問
Setting up jacobian pattern in odeset
Hi All, I'm trying to evaluate the jacobian pattern for a toy model x0 = [1 0 0 0 0 0 0 0 0 0]'; tspan = 0:0.01:5; f0 = ...
1年以上 前 | 0 件の回答 | 0
0
回答質問
finding the sparsity pattern of a matrix
I've a matrix created via symbolic multiplication I'm sharing an example of the resulting matrix below (which is the RHS of od...
1年以上 前 | 0 件の回答 | 0
0
回答質問
Does ode15s call BLAS functions?
Hi All, This is a follow up to my previous post here Could someone please clarify if the ode solver calls BLAS functions for...
1年以上 前 | 2 件の回答 | 0
2
回答質問
Question regarding ode15s
Hello Everyone, I'm simulating a system of stiff differential equations of the form using ode15s Y'= (1./Vector1).*(Matrix1...
1年以上 前 | 1 件の回答 | 0
1
回答質問
labels of stacked plot
Hi All, I've been going through the examples available here https://in.mathworks.com/help/matlab/ref/stackedplot.html to gene...
1年以上 前 | 1 件の回答 | 0
1
回答質問
reading the contents of a text file
I have the following content in a text file 1 2 3.45 4 2 2 3.43 4 3 2 3.23 4 4 2 3.46 4 5 2 3.345 4 6 2 3.4567 4 I'm tr...
1年以上 前 | 1 件の回答 | 0
1
回答質問
creating an empty json file
Hi All, I would like to know how to create an empty json file in MATLAB.
1年以上 前 | 1 件の回答 | 0