photo

dk


Last seen: 3 meses hace Con actividad desde 2011

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

3 Preguntas
5 Respuestas

Cody

0 Problemas
8 Soluciones

CLASIFICACIÓN
6.302
of 300.364

REPUTACIÓN
7

CONTRIBUCIONES
3 Preguntas
5 Respuestas

ACEPTACIÓN DE RESPUESTAS
66.67%

VOTOS RECIBIDOS
2

CLASIFICACIÓN
 of 20.934

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
43.439
of 168.407

CONTRIBUCIONES
0 Problemas
8 Soluciones

PUNTUACIÓN
90

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Review
  • Thankful Level 1
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Create a two-point distribution?
N=100; x=sign(rand(N,1)-0.5);

alrededor de 6 años hace | 1

Respondida
plotting data which extends several years
Try one of these time = [time_2007,time_2008+365]; plot(time,data); or time=[datenum('2007,1,1')+time_2007,dat...

más de 13 años hace | 0

Resuelto


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

casi 14 años hace

Resuelto


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

casi 14 años hace

Resuelto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

casi 14 años hace

Resuelto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

casi 14 años hace

Resuelto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

casi 14 años hace

Resuelto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

casi 14 años hace

Resuelto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

casi 14 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

casi 14 años hace

Pregunta


DelaunayTri
I already have a triangulation (x,y,z,tri). How can I create a DelaunayTri class without re-triangulating?

alrededor de 14 años hace | 2 respuestas | 0

2

respuestas

Respondida
Change a variable name in a dataset array
I knew there should be an easier way. Thanks

alrededor de 14 años hace | 0

Pregunta


Change a variable name in a dataset array
I would like to change the name of one of the variable names in a dataset array. I can do it like this temp=get(DS); vn=tem...

alrededor de 14 años hace | 2 respuestas | 0

2

respuestas

Respondida
legend doesn't resize with figure
Make sure "Match figure screen size" is checked under Preferences-->Figure Copy Template-->Copy Options.

más de 14 años hace | 0

Respondida
Microsoft Word and Figures
Save your figure using saveas() (use emf or png). When inserting the saved figure to Word use "link to file" option.

más de 14 años hace | 0

Pregunta


getting the axis position correctly
I can get the position of the axis easily figure,plot([0 1], [0 1]) axis equal AxesHandle=findobj(gcf,'Type','axes'); ge...

más de 14 años hace | 3 respuestas | 1

3

respuestas