photo

Ayush Anand


Actif depuis 2023

Followers: 0   Following: 0

My interest areas include Deep Learning and Artificial Intelligence. DISCLAIMER: Any advice or opinions here are my own , and in no way reflect that of MathWorks.

Programming Languages:
Python, C++, C
Spoken Languages:
English
Pronouns:
He/him

Statistiques

  • Knowledgeable Level 4
  • 6 Month Streak
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
How to show latex by override `disp` in classdef?
I think there is a mistake in your class definition, as the class name and the constructor names are different in the snippet pr...

8 jours il y a | 0

Réponse apportée
How to add one more hitch to model of Vehicle Body 3DOF Three Axles?
Hi Timothy, The "Hitch force" input port is indeed there in the Vehicle Body 3DOF Three Axles. If it does not show up for you b...

8 jours il y a | 0

Réponse apportée
Linear Neural Network add another linear layer
You can add a hidden layer between input and output using "feedforwardnet" function (https://www.mathworks.com/help/releases/R20...

environ un mois il y a | 0

Réponse apportée
Using gensim for dlnetwork
The gensim function in MATLAB is typically used to generate a Simulink model from a Simulink Control Design linear model (say, m...

environ 2 mois il y a | 0

Réponse apportée
Fullscreen animation files montage
You can use the set function with the figure handle to adjust its Position property to fill the screen. Here's how you can do i...

environ 2 mois il y a | 0

Réponse apportée
Plotting the preview from webcam in the matlab app window in real time.
You can do this using the webcam support in MATLAB (https://in.mathworks.com/help/releases/R2023a/supportpkg/usbwebcams/ug/webca...

2 mois il y a | 0

Réponse apportée
BVP Error, help with explaination
The magnitude of the exponential function exp(y(1)*log(10)/A) blows up very rapidly as A is . This is most probably causing the ...

2 mois il y a | 0

Réponse apportée
CNN1d Speech Emotion Recognition
Hi Young, I think the problem is with the data itself and not the training parameters. I analysed the data file attached and it...

2 mois il y a | 0

Réponse apportée
The estimation error is strangely obtained from Simpson's 1/3 rule
There is a mistake with your formulae for estimation of . The formula for the error estimate in Simpson's rule is generally give...

2 mois il y a | 1

| A accepté

Réponse apportée
No convergence during training using an TD3 RL agent
The reward continuously droppng to zero suggests that the agent might be struggling with either the complexity of the task, the ...

2 mois il y a | 0

Réponse apportée
S2P file to csv file conversion
Hi, You can read through the s2p file using fopen and fscanf functions and store the data in a temporary variable, which you ca...

3 mois il y a | 0

| A accepté

Réponse apportée
Rearranging a vector into a matrix according to other two vectors
You can do this by defining a new concentration_matrix of shape (78,2241) with NaN values and iterating through the indices of t...

3 mois il y a | 0

Réponse apportée
Matlab editor settings: notify undefined variables
Hi, MATLAB editor will not flag this like it flags unused variables. A couple of reasons I can think of are that the variable "...

3 mois il y a | 0

| A accepté

Réponse apportée
Averaging of rows from excel table
Hi, You can read the data into MATLAB using "readtable" and extract the unique combinations of "Name" and "Date" using the "un...

3 mois il y a | 1

| A accepté

Réponse apportée
How can I determine number of samples?
Hi, The Kolmogorov-Smirnov test producing a result of 1 indicates that, under the significance level used by the test (commonl...

3 mois il y a | 1

| A accepté

Réponse apportée
Matrix versus Scalar Input Into Functions Using Symbolic Toolbox
Hi, The discrepancy you observe is due to the difference in mathematical evaluation of matrix algebra (matrix exponentiation an...

3 mois il y a | 1

Réponse apportée
BVP4c error. Would anyone help to find any error and correct this ?
Hi, You need to replace the comma before ypp with a semi-colon to create a 4-column vector %Replace dydx=[y4;y2p;y3p,ypp]; wi...

3 mois il y a | 0

Réponse apportée
Finding the index k of square nilpotent matrix A
Hi, You can do away with the binary search entirely and do a simple linear search if n is not large: function k = nilIndex(A)...

3 mois il y a | 1

Réponse apportée
Triple intergral for the array valued function
Hi, You need to integrate each component of your array-valued function separately and then combine the results. You can call "i...

3 mois il y a | 0

Réponse apportée
The Tsunami model 's question
The solution still remains Mathematically valid but the physical scenario it represents will be very different, or in practicali...

3 mois il y a | 0

Réponse apportée
How do I create an abstract smooth 3-D shape using known points?
Hi, "surf" requires the data passed to form a grid for a smooth plot. If the data does not naturally form a grid, one common ap...

3 mois il y a | 0

Réponse apportée
Extract variables from table and function with loop
Hi, When you are using "M3a(:,'i')", MATLAB is interpreting 'i' as a literal character, not the variable 'i' from your loop. Yo...

3 mois il y a | 1

| A accepté

Réponse apportée
zero phase error control
Hi, You can typically invert the discrete transfer function simply by swapping the numerator and denominator. However, if the d...

4 mois il y a | 0

Réponse apportée
How to remove unsteady reflections in images ?
Hi, You can achieve the sliding average operation in MATLAB using the "fspecial" and "imfilter" functions: kernel = fspecial('...

4 mois il y a | 0

Réponse apportée
Histogram plot and Gaussian
Hi, When you multiply the PDF by N*50, you're assuming each bin of the histogram represents an equal division of the probabilit...

4 mois il y a | 0

Réponse apportée
How to delete every alternate rows?
Hi, You can do sz_new = sz(2:2:end, :); This will do the job.

4 mois il y a | 0

| A accepté

Réponse apportée
Prediction of full cycle using partial cycle data
Hi, Predicting the remaining cycle data when you already have data for the initial part of the cycle can be approached through...

4 mois il y a | 0

Réponse apportée
How to create a cyclic color palette
Hi, You can use the "hsv" function to create a cyclic rainbow color palette, as the HSV color space is naturally cyclic with re...

4 mois il y a | 0

| A accepté

Réponse apportée
Positioning a figure
Hi, In MATLAB, when you dock figures MATLAB's IDE manages their layout, and direct control over the positioning of docked figur...

4 mois il y a | 0

Réponse apportée
Matlab figures of same size still appear different in a LaTex document
Hi, The error could be arising in either MATLAB or Latex. You would have to check the vertical alignment in minipage or any env...

4 mois il y a | 1

Charger plus