Statistica
0 Domande
6 Risposte
RANK
2.745
of 299.997
REPUTAZIONE
22
CONTRIBUTI
0 Domande
6 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
4
RANK
of 166.881
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
Feeds
multiple graphs in one script
You need to use |hold on| after the first |plot| and |hold off| after the last |plot| if you want multiple plots in the same fig...
circa 7 anni fa | 1
How can I count all pixel values that are not black(0)?
If the image is stored as a binary matrix M, you can use this: count = sum(M(:) ~= 0); For very large images, this runs ...
circa 7 anni fa | 0
Hey guys, I need help with this input dialogue to function use.
You calculate _a_ correctly, but you never use it. Try this: a = str2double(S); ln = a(1); hfo = a(2); fy = a(3);
circa 7 anni fa | 1
| accettato
how to repeat elements of column vector
You can get a vector where V(i) = count of timestamp i, with: V = diff([0; find(diff([data(:, 1); 1]))]) Then you can st...
circa 7 anni fa | 0
| accettato
multiple functions in code to define different pathways
There are some bounds-checking bugs in your code: # front(1, 1, IM, Lx, Ly) will crash. # front(1, Lx, IM, Lx, Ly) will cras...
circa 7 anni fa | 1
How to get the order indices in a character array?
You can do this in two steps. First, replace the strings with their indices in the output string: s = [the_output, ',']; ...
circa 7 anni fa | 1