Asvin Kumar
MathWorks
Followers: 0 Following: 0
Hi, I'm an Applications Support Engineer at Mathworks.
My areas of interest are signal processing and communications. I've also spent a little while on reinforcement learning, machine learning and deep learning.
DISCLAIMER: Any ideas or opinions posted here are my own and in no way reflect that of MathWorks.
Estadística
0 Preguntas
176 Respuestas
CLASIFICACIÓN
288
of 295.495
REPUTACIÓN
302
CONTRIBUCIONES
0 Preguntas
176 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
36
CLASIFICACIÓN
of 20.240
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.991
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
Feeds
Navigating Struct and Double issues
This is a lot of code to debug and not in format that invites help from the community. Please have a look at this post on the be...
más de 3 años hace | 0
Align digraph EdgeCData with correct edges
You need to transpose the CData matrix before passing it into nonzeros. nonzeros generates a list of non-zero elements by trave...
más de 3 años hace | 1
| aceptada
Extracting a timestamp from a header in a text file that also contains tabular data
There's no single function which does this. You can easily put together a script. Use the Import Tool to read the data (Fp1, F...
más de 3 años hace | 0
| aceptada
how to calculate time lag from cross correlation data for 365 days?
I'm not a 100% clear on what you're trying to achieve but this sounds like a good use case for xcorr. You can look at the usage ...
más de 3 años hace | 1
| aceptada
How to extract perticular variable from multiple netcdf files (daily data). And merge them together as a one .mat file.
I'm not sure if there is a single function to do that. Here are some functions you can use to create a script for yourself. nc...
más de 3 años hace | 0
| aceptada
I am novice in Matlab . I'm trying hard to load a log file (that too, from specific line number to specific line number ) into Matlab and store that data in it into a variable.
You can use the Import Tool to read data from your log file. You can read the data into a table. You can then convert the tabl...
más de 3 años hace | 0
Why i get 100% accuracy using CVPartion and SVM
Your usage of cvpartition is correct. You are not using the same data for training and testing. Your SVM jusr seems to be work...
más de 3 años hace | 0
| aceptada
How do I time shift an audio signal?
When you select the second subplot, you need to use the plot command again to plot the audio signal. Here's a modified version ...
más de 3 años hace | 1
| aceptada
Matlab program for Correlation between two images
It’s not entirely clear what you mean by correlation. If you’re looking to compute the cross-correlation between two images, you...
más de 3 años hace | 1
Help with data mapping
Read the empty table in Mapping.xlsx using readtable or the Import Tool. If you are using readtable, create a SpreadsheetImportO...
más de 3 años hace | 0
| aceptada
How do I modify my student license to have administrator privilege to setup minGW64 compiler
If you refer to this section, I think it says that your Windows user should have administrator privileges. It does not say that ...
más de 3 años hace | 0
How to Design a MATLAB GUI program to make a watermarking image of original images which are given in jpeg format.
Looks like something App Designer can handle. There's a great amount of Documentation to help you out. You can shart here: Devel...
más de 3 años hace | 0
How to plot XScale in log in boxplot? I used set(gca,'XScale','log') but the scale width are unequal. Kindly help.
You were right to set the 'XScale' axes property to 'log'. The reason it didn't behave as expected was becasuse the positions of...
más de 3 años hace | 0
Command to import column vectors
Stephen's comment is correct. Each variable in a table is a column vector. You can see this by selecting the "Generate Script"...
más de 3 años hace | 0
How should i prepare an excel to be imported to fuzzy logic toolbox? Also, what program to write for import data from excel and export the output into an excel?
You can read from an Excel sheet using readmatrix. See example here. You can pass the MxN matrix as an input to the evafis func...
más de 3 años hace | 0
| aceptada
Aerobalence Code , how do i get the code to output just 1 answer
The 7 outputs are because you have an assignment statement inside a for loop that runs 7 times. You are not suppressing the outp...
más de 3 años hace | 0
"Error While Evaluating UIControl Callback"
If I understand correctly, you just want to update the plot. You can do that by calling the plot function in your callback with ...
más de 3 años hace | 0
How to extracts the data from .dat extension and create necessary equations
The import tool should do the job for you. The linked page shows examples on how to use the tool. Here's another doc page whic...
más de 3 años hace | 0
| aceptada
Reverting Referenced Subsystems back to normal Subsystems
Hi Marvin, I can confirm that the feature to expand referenced subsystems was removed in R2020a. So, it looks like the best w...
más de 3 años hace | 0
| aceptada
How to visualize 4D .nii file?
nii files follow the NIfTI image format. You can use the niftiread function to read these files. MATLAB also offers other functi...
más de 3 años hace | 0
Matlab barchart question.
Hi Pappu, It seems you've contacted Tech Support via email. I'll capture the workaround that we provided you over here for eve...
más de 3 años hace | 0
| aceptada
Numerical integration (trapz) between patch
The reason I1 and I2 are negative is because the H values are negative. trapz numerically integrates over the specified range by...
más de 3 años hace | 0
Line plots from netcdf files
I'm not entirely clear as to what you want to plot. Since you seem like you're new to the language, let me give you a brief outl...
más de 3 años hace | 0
Error in readInput - unrecognized function or variable 'swallow_csv'
Have a look at https://adared.ch/efficient-csv-reader-for-matlab/ The swallow_csv mex which was generated for windows will not...
más de 3 años hace | 0
Getting dltargets.internal.getNetworkInputSizes error when trying to quantize trained network
[EDIT] David figured out that he needed GPU Coder Interface for Deep Learning Libraries. More details on the requirements fo...
más de 3 años hace | 0
| aceptada
Setting LSTM time serie prediction
Have a look at the Classification, Prediction, and Forecasting section from this page on LSTMs. As the page explains, you broadl...
más de 3 años hace | 1
LSTM sequence-to-one regression
If you could share the code that you've written so far, the community will be able to help you better. If I still had to guess...
más de 3 años hace | 0
Multiple inputs to ANFIS
You could use a for loop. Simple and straightforward. You could move your statements into a function block and write a script ...
más de 3 años hace | 0
how to give weighted average method for defuzzification
This question posted earlier might be relevant to you: https://www.mathworks.com/matlabcentral/answers/479624-add-custom-defuzzi...
más de 3 años hace | 0
I get an error with copyfile loop
Thanks for providing additional info. I'm not entirely sure why you're seeing this error. There are some pieces of information w...
más de 3 años hace | 0