![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/8733550_1588937511200.png)
Akihumi
Followers: 0 Following: 0
Estadística
0 Preguntas
17 Respuestas
0 Problemas
5 Soluciones
CLASIFICACIÓN
1.546
of 297.010
REPUTACIÓN
44
CONTRIBUCIONES
0 Preguntas
17 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
4
CLASIFICACIÓN
of 20.418
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
55.303
of 157.687
CONTRIBUCIONES
0 Problemas
5 Soluciones
PUNTUACIÓN
60
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
How to find the indeces of same values within two vectors with repetitive values?
flip it to another way should work: idx = find(ismember(B,A)==1);
casi 5 años hace | 0
Tolerance, correct digits
You can try to type that in Command Window and you might have your answer right there :)
casi 5 años hace | 0
How we can get snapshot in matlab after a time limit say 3 second automatically
Maybe timer can help?
casi 5 años hace | 0
3 subplots of those three intervals in a horizontal line
Do you mean using something like subplot? Eg: figure subplot(1,3,1) plot(x,A) subplot(1,3,2) plot(x,B) subplot(1,3,3) pl...
casi 5 años hace | 1
Graph of sin(10*x*cos(x))
Do you mean something like this? x = 0:0.01:10; plot(sin(10.*x.*cos(x)));
casi 5 años hace | 0
How to find the unique elements in multiple strings?
unique([strsplit(A,', '), strsplit(B,', ')])
casi 5 años hace | 0
| aceptada
How to assign a different color to lines being plotted in a loop?
* Edits: Sorry for the wrong information about the default line color. Otherwise, you can try figure hold on randColor = ra...
casi 5 años hace | 1
| aceptada
How to create a black border in each figure of a subplot with colormaps?
Have you tried box?
casi 5 años hace | 0
| aceptada
Plot P50 value with range from P10 to P90 for different groups on same plot
Do you mean errorbar?
casi 5 años hace | 0
| aceptada
how do i compare my test image with the one in my database using euclidean distance?
I assume that you have RGB images. Do you mean that you want to compute the euclidean distance of the pixes at same location on...
casi 5 años hace | 0
how to solve 'Index exceeds the number of array elements (1)'?
Your x and y are single value, so it will have error when i==2. You can make use of 'Pause on Errors' under the drop down menu ...
casi 5 años hace | 0
| aceptada
2D array in for loop problem
Unlike Python, C, C++ and other programming languages, Matlab starts the matrix index with 1 instead of 0. So just change the f...
casi 5 años hace | 1
| aceptada
problem with xlswrite windows
I think the filename doesn't allow ':' if you use datestr(now) Try using sprintf('%02.0f',clock) Besides, I would suggest us...
casi 5 años hace | 0
| aceptada
Training data in ANN (Artificial Neural Network) code
I noticed that you have saved the data in a new sheet in Excel, is that intended? If not, you can simply delete the empty sheet...
casi 5 años hace | 0
How to calculate this values manually.
Why not just refer to the documentations of the functions at: https://www.mathworks.com/help/matlab/ref/double.cos.html https:...
casi 5 años hace | 0
while loop until x amount correct digits
Have you considered using built-in function 'round'? https://www.mathworks.com/help/matlab/ref/round.html Then you can just do...
casi 5 años hace | 1
| aceptada
How to save every iteration of for loop and plot
What is your numerical range of raw_image? If it is between 0 and 1, all elements of Mp2 will be 0, thus the while loop while c...
casi 5 años hace | 0