![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/10465593_1523515423604_DEF.jpg)
Aakash Deep
Followers: 0 Following: 0
I am a B.Tech 4th year CSE student.
Estadística
1 Pregunta
16 Respuestas
1 Problema
30 Soluciones
CLASIFICACIÓN
2.702
of 297.016
REPUTACIÓN
22
CONTRIBUCIONES
1 Pregunta
16 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
6
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
11.840
of 157.687
CONTRIBUCIONES
1 Problema
30 Soluciones
PUNTUACIÓN
445
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
Lists in matlab to store iterative data.
Hello Nilesh, From your question I understand that you are trying to add a new value into your pre-defined vector. So for th...
más de 6 años hace | 0
| aceptada
Readtable error: Index exceeds array bounds.
Hello, You can try dlmread command to read a .csv file If you think path is creating problem somewhere, you can k...
más de 6 años hace | 0
picking maximum difference across entries of row vectors, Part 2
Hello, In order to find out the maximum difference between two elements in a row vector, you can first sort it and then take ...
más de 6 años hace | 0
Convert unfolded tensor back to higher dimensional tensor?
Hey Rohit, Let's first see how we can unfold a tensor to matrix then you might get some insight how to unfold it back. Let's ...
más de 6 años hace | 0
Problema
Second Diagonal
Transpose the matrix from it's second diagonal.
más de 6 años hace | 0 | 50 solvers
MATLAB crashes if imshow is used.
If you have a valid license then you can contact support from the below link <https://mathworksservicerequest.secure.force.co...
más de 6 años hace | 0
convert matrix to tensor
I think this will help you. You can refer this <https://www.mathworks.com/matlabcentral/answers/27338-convert-matrix-into-the-t...
más de 6 años hace | 0
how to make a tree
Here are some of the references which you can look at, <https://www.mathworks.com/matlabcentral/answers/35698-c4-5> <https...
más de 6 años hace | 0
3D plot of a matrix
Hello Anshuman, You can just use the surf command for this. It will take care of your axis and color contrast itself. A...
más de 6 años hace | 0
could anyone tell me how to save the values while the code is getting executed
Use save command to save the current value of the variable. save filename variable1 This will create .mat file (for this...
más de 6 años hace | 0
Save workspace output to a file
Hello Alpedhuez, You can use the save command to save multiple workspace variables in a single file. You can do this ...
más de 6 años hace | 1
Extract features from an EEG (single channel) signal
Hello Chiara, If you want to extract the alpha and theta rhythm of the signal, you can find the wigner-ville transform of the...
más de 6 años hace | 0
Matlab taking too much time to give output
Hey Pushkar, Solving a convex optimization problem is a big task. Yes, it can take a long time to converge. You can not minim...
más de 6 años hace | 0
how to make if statement repeat only once ?
Hey, From your question, I understand that you have a if condition inside a loop which you need to execute only once for a p...
más de 6 años hace | 4
change a script to function
Hey, In order to create a function in MATLAB, add a couple of lines to your code function [out_1, out_2, ....., out_n]...
casi 7 años hace | 1
| aceptada
how to plot surface for this problem.
I am assuming that your matrix *X* has a dimension nx3 where n can be your iterations. After executing your function command *F=...
casi 7 años hace | 0
Converting a 1x1 Vector into a Scalar Number
I agree with Stephen Cobeldick comments that there is no data class as scalar/vector/matrix, it all depends on their dimensions....
casi 7 años hace | 0
Resuelto
Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...
casi 7 años hace
Resuelto
Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...
casi 7 años hace
Resuelto
Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...
casi 7 años hace
Resuelto
Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...
casi 7 años hace
Resuelto
The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...
casi 7 años hace
Resuelto
Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...
casi 7 años hace
Resuelto
Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...
casi 7 años hace
Resuelto
Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...
casi 7 años hace
Resuelto
Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...
casi 7 años hace
Resuelto
Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
casi 7 años hace
Resuelto
Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...
casi 7 años hace
Resuelto
Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...
casi 7 años hace