photo

Ilian


Last seen: 11 meses hace Con actividad desde 2020

Followers: 0   Following: 0

Estadística

MATLAB Answers

0 Preguntas
6 Respuestas

CLASIFICACIÓN
3.151
of 300.365

REPUTACIÓN
18

CONTRIBUCIONES
0 Preguntas
6 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
 of 20.933

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.212

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

  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
column circular permutaion on a matrix
If you just want to rotate the rows this could work: s = -3; % shift (both positive and negative values work) rows = size(A,1)...

más de 5 años hace | 0

Respondida
How do I get a for loop to check a row for conditions?
If you want to use a for loop, you could have a look at if statement with multiple conditions % Your conditions a = 200; b ...

más de 5 años hace | 0

| aceptada

Respondida
Calculate the mean of nonzero pixels and set a threshold
If you just have a threshold, you don't even need to ceate an explicit mask: m = mean(volume(volume>=0.001)); % average of all ...

más de 5 años hace | 0

Respondida
crop multiple images with freehand
imcrop should have a rectangle as input, but you have a mask. You could use roi = drawrectangle(); instead of imfreehand and t...

más de 5 años hace | 0

| aceptada

Respondida
Changing image background from black to white
You can try using connected components. With relatively simple problems this could work: img_original = imread('image.jpeg'); ...

más de 5 años hace | 1

| aceptada

Respondida
remove variables in txt file
You could remove the header line first with something like this: fileID = fopen('p_s.txt'); dataFormat = '%f %s'; C_text = te...

más de 5 años hace | 0

| aceptada