photo

Ondrej


Last seen: más de 3 años hace Con actividad desde 2011

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

6 Preguntas
6 Respuestas

File Exchange

7 Archivos

Cody

0 Problemas
33 Soluciones

CLASIFICACIÓN
9.106
of 300.302

REPUTACIÓN
4

CONTRIBUCIONES
6 Preguntas
6 Respuestas

ACEPTACIÓN DE RESPUESTAS
66.67%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
2.329 of 20.911

REPUTACIÓN
759

EVALUACIÓN MEDIA
4.40

CONTRIBUCIONES
7 Archivos

DESCARGAS
8

ALL TIME DESCARGAS
7194

CLASIFICACIÓN
16.126
of 168.040

CONTRIBUCIONES
0 Problemas
33 Soluciones

PUNTUACIÓN
330

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • 5-Star Galaxy Level 3
  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException using CreateTable() / Java
What worked for me was to replace the line tab.TableScrollPane.setRowHeader(''); with tab.TableScrollPane.setRowHeaderView(j...

más de 3 años hace | 0

Resuelto


Create a row array using double colon operator
Create a row array from 9 to 1, using the double colon operator.

casi 9 años hace

Enviada


inc2adj(mInc)
Conversion from graph incidence matrix to adjacency matrix.

más de 9 años hace | 2 descargas |

3.5 / 5

Pregunta


Uitable tooltip appearance time
I would like to know if it is possible to set the appearance time for tooltips in uitable. I would like to see the tooltip immed...

alrededor de 10 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Deleting elements from vector
I am removing some elements from a (long) vector. I am wondering which is the faster method in general (or better per se). Remov...

más de 10 años hace | 2 respuestas | 0

2

respuestas

Enviada


Fast shortest distance between two line segments (in N dimensions)
Shortest distance between two line segments in N dimensions

más de 10 años hace | 1 descarga |

0.0 / 5

Respondida
Select every Nth row from number groups
If the n "trains" of ones have the same length always, then this probably what you want: result = repmat(find(diff([0 a])==...

casi 11 años hace | 0

Enviada


DGGAM - Draw Graph Get Adjacency Matrix
Draw any graph and export it as fig and save its adjacency matrix

alrededor de 11 años hace | 1 descarga |

5.0 / 5
Thumbnail

Resuelto


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

alrededor de 11 años hace

Resuelto


Free passes for everyone!
_Simply return the name of the coolest numerical computation software ever_ *Extra reward* (get a _freepass_): As an addit...

alrededor de 11 años hace

Resuelto


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

alrededor de 11 años hace

Resuelto


Find the sum of the elements in the "second" diagonal
Find the sum of the elements in the diagonal that starts at the top-right corner and ends at the bottom-left corner.

alrededor de 11 años hace

Resuelto


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

alrededor de 11 años hace

Resuelto


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

alrededor de 11 años hace

Resuelto


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

alrededor de 11 años hace

Resuelto


Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...

alrededor de 11 años hace

Resuelto


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

alrededor de 11 años hace

Resuelto


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

alrededor de 11 años hace

Enviada


mat2fig - Conversion from a matrix to a figure
Function for converting a matrix into a figure (eps,fig,jpg,etc.) and latex code.

más de 13 años hace | 1 descarga |

0.0 / 5
Thumbnail

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

más de 13 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...

más de 13 años hace

Resuelto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

más de 13 años hace

Respondida
Hungary algorithm
Maybe this is what you are looking for: http://www.mathworks.com/matlabcentral/fileexchange/11609

más de 13 años hace | 0

Pregunta


Fit figure size to textbox
Is there some way to fit the figure size to the textbox? Example: I have a = annotation(... 'textbox','...

más de 13 años hace | 1 respuesta | 0

1

respuesta

Resuelto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

más de 13 años hace

Resuelto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

más de 13 años hace

Resuelto


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

más de 13 años hace

Resuelto


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

más de 13 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...

más de 13 años hace

Resuelto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

más de 13 años hace

Cargar más