photo

Katalin


Con actividad desde 2015

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

0 Preguntas
9 Respuestas

Cody

0 Problemas
20 Soluciones

CLASIFICACIÓN
3.018
of 300.343

REPUTACIÓN
20

CONTRIBUCIONES
0 Preguntas
9 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
4

CLASIFICACIÓN
 of 20.926

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
22.380
of 168.172

CONTRIBUCIONES
0 Problemas
20 Soluciones

PUNTUACIÓN
230

NÚMERO DE INSIGNIAS
3

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

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

Ver insignias

Feeds

Ver por

Respondida
getting min & max of a function for different y's
Try this: x = -10:0.1:10; for i=1:200 y= 0.005*i; f1 = @(x) trapmf(x,[-2 0 0 2])-y; for ij = -10:0.01:10 ...

más de 10 años hace | 0

Respondida
Is it possible to numerically label a segmented image?
Hello! Try this: M = im2uint8(label/NUM); imshow(M) s = regionprops(M, 'Centroid'); hold on for k...

más de 10 años hace | 0

| aceptada

Respondida
How to orthogonalize a signal in respect of another signal ????
Hello! Have a look at this thread: <http://www.mathworks.com/matlabcentral/answers/2216-projecting-a-vector-to-another-vecto...

más de 10 años hace | 0

Respondida
Why is my function not defining my outputs and just returning "ans"?
In the script where you are using the function you need to define a variable e.g ABC = noise_removal(data); Then it will ...

más de 10 años hace | 0

| aceptada

Respondida
Binning 2D set of coordinates
imagesc flips the image I think. This is from the help: imagesc(x,y,C) displays C as an image and specifies the bounds of the x-...

más de 10 años hace | 0

Respondida
How to convert 27625 to base 10 from base 7 ?
It cannot have number 7 in it if it is in base 7. Otherwise you would do it like this: base2dec('26625',7)

más de 10 años hace | 2

| aceptada

Respondida
How to shift date-time variable to a common start-date/time
Try this: shifted_date = datetime(actual_dates) - t_diff

más de 10 años hace | 2

Respondida
Matlab crashes on me every time I get an error message in the command window.
Also, looking at the crash log generated by matlab could help to find the reason. Look at this thread: http://www.mathworks.com...

más de 10 años hace | 0

Respondida
My code primarily depends on the diameter or "d" as it is defined, however changing it to a smaller value beyond 0.001, all the results just go to infinity. How do i get around the rounding issue (it seems) ?
I think it's not a rounding issue. In Vy(i+1) = (Cd*A*rho*(Uy-Vy(i))^2*dt)/(2*m) + Vy(i); The fraction (Cd*A*rho*dt)/(2*m) is ...

más de 10 años hace | 0