Abhishek Tiwari
Followers: 0 Following: 0
Explore new tech
Estadística
1 Pregunta
11 Respuestas
0 Problemas
7 Soluciones
CLASIFICACIÓN
1.939
of 295.467
REPUTACIÓN
32
CONTRIBUCIONES
1 Pregunta
11 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
3
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
42.354
of 153.912
CONTRIBUCIONES
0 Problemas
7 Soluciones
PUNTUACIÓN
83
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
Converting 2D Image coordinate to 3D World coordinate
I have an image in PNG format with dimensions (N x M) and a specific point (x, y) within the image, I need determine the corresp...
más de 1 año hace | 1 respuesta | 0
1
respuestaHow to use a Leaky Relu/Softmax function in a hidden layer in a Feedforward Neural Network?
Hi, The following is a list of all relevant transfer functions: % compet - Competitive transfer function. % elliotsig...
más de 2 años hace | 0
Average of every 25 rows in a table
Hi, This might work, % Sample data data = rand(1000, 10); % Calculating Output Dimension (#columns will be same) rows = ...
más de 2 años hace | 0
| aceptada
How to apply moving harmonic average on an array?
Hi, A 'For' loop and harmmean() may do the same thing, as shown. n = numel(Kd_i); harmonicMean = Kd_i; for idx = 2:n-1 ...
más de 2 años hace | 0
| aceptada
Computing values of a formula
Hi, It appears that it is updating and doubling H with each cycle. So, the code you provided just doubles the result of the fin...
más de 2 años hace | 0
| aceptada
How to read comma separated .txt file in MATLAB ?
Hi @M Try strsplit() or split() on rows and string array '#A-R' as delimiter. It divides each element of input at the specified...
más de 2 años hace | 0
Convert DoY and hour to datetime format
Hi, It can be done by using datetime() with modified display format as demonstrated T = readtable('https://www.mathworks.com/m...
más de 2 años hace | 0
| aceptada
MATLAB prints ''Greek letters'' in chart text, but how about sprintf, compose, string or char functions?
Hi, There are lots of pre defined greek letters. You just need to pick right index and use sprintf(). I have listed them below ...
más de 2 años hace | 1
| aceptada
How to find the row and column number in a table
Hi, It can be done with a simple conditional expression and find(). The conditional statement will convert your vector to a bin...
más de 2 años hace | 0
I want to apply a different color to the bar in yyaxis.
Hi, It is possible to do so by specifying different colour for each bar. This can be accomplished by changing 'FaceColor' for e...
más de 2 años hace | 1
How to put a label on each plotted curve
Hi, One method is to choose any point on each curve and add text description to it that may serve as a label. Similarly, LineMa...
más de 2 años hace | 1
| aceptada
How to label the curve instead of using legend?
Hi, You can label your curve using text. Choose one of the point on each curve and add text in there to serve as a label. Exa...
más de 2 años hace | 0