
ABHILASH SINGH
Indian Institute of Science Education and Research Bhopal (IISER Bhopal)
Subscribe my YouTube channel: https://youtube.com/@singhabhilash ResearchGate: https://www.researchgate.net/profile/Abhilash_Singh8 Personal website: https://www.abhilashsingh.net/?source=abhilash_matlab_page Email: abhilash12iec002@gmail.com;abhilash.singh@ieee.org
MATLAB
Spoken Languages:
English
Professional Interests:
AI for Signals and Images, Earth and Planetary Science
Estadística
CLASIFICACIÓN
3.188
of 297.613
REPUTACIÓN
18
CONTRIBUCIONES
1 Pregunta
14 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
9
CLASIFICACIÓN
977 of 20.457
REPUTACIÓN
1.926
EVALUACIÓN MEDIA
4.70
CONTRIBUCIONES
32 Archivos
DESCARGAS
104
ALL TIME DESCARGAS
16747
CLASIFICACIÓN
2.071
of 159.263
CONTRIBUCIONES
1 Problema
223 Soluciones
PUNTUACIÓN
1.352
NÚMERO DE INSIGNIAS
6
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
How to show r square correlation and RMSE on a scatterplot
For those who is looking for a complete set of code; Just check this https://de.mathworks.com/matlabcentral/fileexchange/78703-...
más de 4 años hace | 0
How to create monthly average from daily data?
You can try this; https://in.mathworks.com/matlabcentral/fileexchange/74497-daily-data-to-monthly-average-sum-in-matlab?s_tid=L...
alrededor de 5 años hace | 0
Calculate mean from daily to monthly values
You can try this; https://in.mathworks.com/matlabcentral/fileexchange/74497-daily-data-to-monthly-average-sum-in-matlab?s_tid=L...
alrededor de 5 años hace | 0
Sum the daily data based on month and year
You can try this; https://in.mathworks.com/matlabcentral/fileexchange/74497-daily-data-to-monthly-average-sum-in-matlab?s_tid=L...
alrededor de 5 años hace | 0
How to convert daily data to monthly?
You can try this; https://in.mathworks.com/matlabcentral/fileexchange/74497-daily-data-to-monthly-average-sum-in-matlab?s_tid=L...
alrededor de 5 años hace | 0
Plotting only highest peaks from multiple signals
I think you are looking for this. fs = 2e3; t = (0:1/fs:1-1/fs)'; A= sin(2*pi*19*t); B= chirp(t-0.6,61,t(end),603,'quadrati...
más de 5 años hace | 1
How do you reconstruct a test image from eigenfaces generated from Matlab pca function
You can use this MATLAB GUI for the recontruction of the image (both for colour and grayscale images) https://in.mathworks.co...
más de 5 años hace | 1
Sawtooth Waveform With Variable Frequency and constant amplitude
T = 10*(1/50); fs = 1000; t = 0:1/fs:T-1/fs; a=2*pi; x = a*sawtooth(2*pi*50*t,1/2); plot(t,x)
más de 5 años hace | 0
Create a new vector with even numbers first.
x = [20 21 22 23 24 25 26 27 28 29] % Find indices where x is even: evenIndices = rem(x, 2) == 0 % Extract only the even nu...
más de 5 años hace | 0
Connecting dots with straight line in a loop.
Follow this code. https://in.mathworks.com/matlabcentral/fileexchange/57185-cognitive-radio-frequency-assignment-with-interfere...
más de 5 años hace | 0
Random Variable with exponential distribution of Probablity Density Function
alpha=2; X=0:0.1:10; fx=(1/alpha)*exp(-X./alpha); plot(X,fx) fy=fx./(2*X); hold on plot(X,fy) legend('f(X...
más de 6 años hace | 3
How to access gopro live streaming using image acquisition tool through WiFi
Go for this <https://in.mathworks.com/matlabcentral/fileexchange/66584-object-detection-using-deep-learning-in-matlab?s_tid=pro...
casi 7 años hace | 2
High speed camera compatible with Matlab
You can check this <https://in.mathworks.com/matlabcentral/fileexchange/66584-object-detection-using-deep-learning-in-matlab?s_...
casi 7 años hace | 1
how to set dpi of 300 of tiff image in matlab
print(gcf, '-dtiff', 'myfigure.tiff');
casi 8 años hace | 1
Pregunta
respected sir, if i am using syms function to calculate the value of differential equation,in result i am getting a fractional value where num and den are very large.so can you tell me how to represent these fraction in small digits.
clc; clear all; syms z; lamda= input ('enter the vehicle arrival rate ='); r= input ('enter the transmission rang...
más de 8 años hace | 1 respuesta | 0