photo

Looky


Last seen: más de 4 años hace Con actividad desde 2017

Followers: 0   Following: 0

Estadística

All
MATLAB Answers

0 Preguntas
7 Respuestas

Cody

0 Problemas
13 Soluciones

CLASIFICACIÓN
2.173
of 300.381

REPUTACIÓN
30

CONTRIBUCIONES
0 Preguntas
7 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
5

CLASIFICACIÓN
 of 20.941

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
32.548
of 168.477

CONTRIBUCIONES
0 Problemas
13 Soluciones

PUNTUACIÓN
141

NÚMERO DE INSIGNIAS
2

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

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

Ver insignias

Feeds

Ver por

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

alrededor de 5 años hace | 0

| aceptada

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

casi 6 años hace | 2

| aceptada

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

casi 6 años hace | 0

| aceptada

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

casi 8 años hace | 1

| aceptada

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

casi 8 años hace | 0

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

casi 8 años hace | 0

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

alrededor de 8 años hace | 2

| aceptada