photo

Ilian


Last seen: 4 mesi fa Attivo dal 2020

Followers: 0   Following: 0

Statistica

MATLAB Answers

0 Domande
6 Risposte

RANK
3.109
of 297.457

REPUTAZIONE
18

CONTRIBUTI
0 Domande
6 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
1

RANK
 of 20.438

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 158.938

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
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)...

quasi 5 anni fa | 0

Risposto
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 ...

quasi 5 anni fa | 0

| accettato

Risposto
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 ...

quasi 5 anni fa | 0

Risposto
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...

quasi 5 anni fa | 0

| accettato

Risposto
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'); ...

quasi 5 anni fa | 1

| accettato

Risposto
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...

quasi 5 anni fa | 0

| accettato