photo

Looky


Last seen: oltre 4 anni fa Attivo dal 2017

Followers: 0   Following: 0

Statistica

All
MATLAB Answers

0 Domande
7 Risposte

Cody

0 Problemi
13 Soluzioni

RANK
2.170
of 300.364

REPUTAZIONE
30

CONTRIBUTI
0 Domande
7 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
5

RANK
 of 20.934

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
32.531
of 168.407

CONTRIBUTI
0 Problemi
13 Soluzioni

PUNTEGGIO
141

NUMERO DI BADGE
2

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Knowledgeable Level 2
  • First Review
  • First Answer
  • Commenter
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
code to find the first whole number divisible by 1 to n
the mod function accepts a vector for the second argument, you can use this to check for a sequence of factors, e.g.: if(any(mo...

circa 5 anni fa | 0

| accettato

Risposto
Rotate a 3D data cloud to align with one axis
I'm not sure if any built in functions exist for this purpose. However, one mathematical way would be the following: Determin...

quasi 6 anni fa | 2

| accettato

Risposto
Generate a sector mask within a big matrix
Solution could look like this: % Generate example coordinates x=linspace(-1,1,100); y=fliplr(linspace(-1,1,100)); [X,Y]=me...

quasi 6 anni fa | 0

| accettato

Risposto
How to change this for loop into parfor loop?
There are two issues in your code that prevent the parfor loop from working. # The matrix data is indexed in a way that matla...

quasi 8 anni fa | 1

| accettato

Risposto
How to extract numeric data from the text comments using importdata?
There are many ways to accomplish that. You can use string manipulation methods to deal with the possible formats you would ex...

quasi 8 anni fa | 0

Risposto
why after I use the imwrite function, the pixels in the image are changed diferrent? before I convert from double matrix to uint8 matrix ?
This is likely a result from the compression/decompression process involved when saving to a jpg file. Choose a better suited fi...

quasi 8 anni fa | 0

Risposto
Displaying an axis scale in mm rather than pixels
It's a bit tricky without any example data, but this should do the trick. conversion=0.1; % in mm/pixel addMM=@(x) s...

circa 8 anni fa | 2

| accettato