photo

Looky


Last seen: plus de 4 ans il y a Actif depuis 2017

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

0 Questions
7 Réponses

Cody

0 Problèmes
13 Solutions

RANG
2 168
of 300 365

RÉPUTATION
30

CONTRIBUTIONS
0 Questions
7 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
5

RANG
 of 20 933

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
32 516
of 168 262

CONTRIBUTIONS
0 Problèmes
13 Solutions

SCORE
141

NOMBRE DE BADGES
2

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

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

Afficher les badges

Feeds

Afficher par

Réponse apportée
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...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
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...

presque 6 ans il y a | 2

| A accepté

Réponse apportée
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...

presque 6 ans il y a | 0

| A accepté

Réponse apportée
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...

presque 8 ans il y a | 1

| A accepté

Réponse apportée
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...

presque 8 ans il y a | 0

Réponse apportée
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...

presque 8 ans il y a | 0

Réponse apportée
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...

presque 8 ans il y a | 2

| A accepté