photo

Sebastian Hölz


GEOMAR

Last seen: 25 giorni fa Attivo dal 2004

Followers: 1   Following: 0

Messaggio

Statistica

All
MATLAB Answers

1 Domanda
4 Risposte

File Exchange

12 File

Cody

0 Problemi
71 Soluzioni

RANK
6.682
of 300.759

REPUTAZIONE
6

CONTRIBUTI
1 Domanda
4 Risposte

ACCETTAZIONE DELLE RISPOSTE
100.0%

VOTI RICEVUTI
3

RANK
351 of 21.081

REPUTAZIONE
4.571

VALUTAZIONE MEDIA
4.20

CONTRIBUTI
12 File

DOWNLOAD
17

ALL TIME DOWNLOAD
43345

RANK
9.622
of 170.900

CONTRIBUTI
0 Problemi
71 Soluzioni

PUNTEGGIO
710

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Personal Best Downloads Level 2
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • Revival Level 1
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
Setter methods for dynamic properties
I believe the best method is to temporarily disable the property set method in the defined setter-method: classdef myClass < ...

6 mesi fa | 0

Risposto
Avoid deleting of datatip when clicking on marker
OK, here my solution which allows to move the DT, allows deleting the DT via contextmenu and restores it when being deleted by c...

oltre un anno fa | 0

| accettato

Domanda


Avoid deleting of datatip when clicking on marker
When creating a datatip DT, it is deleted when I click on the marker without moving the DT. Example: figure h = plot...

oltre un anno fa | 2 risposte | 0

2

risposte

Risposto
GCA CurrentPoint with the DateTime Ticks on the X Axis
Hi, all data is plotted with respect to a reference date, which is stored as property of the axis. To get the true datetim...

quasi 8 anni fa | 2

Inviato


crawl_directories(file, varargin)
Crawl directories to search for file(s).

oltre 9 anni fa | 1 download |

0.0 / 5

Risposto
MATLAB was unable to launch my System web browser
I had the same problem and just found the cause: too many entries in the PATH environment variable. Win7 (and most likely older ...

quasi 13 anni fa | 1

Risolto


Count from 0 to N^M in base N.
Return an array of numbers which (effectively) count from 0 to N^M-1 in base N. The result should be returned in a matrix, with ...

oltre 13 anni fa

Risolto


Read a Soroban Abacus
*Description* The Soroban is the name of the modern Japanese abacus. Information on reading a Soroban can be found <http://we...

oltre 13 anni fa

Risolto


Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...

oltre 13 anni fa

Risolto


Reverse Run-Length Encoder
Given a "counting sequence" vector x, construct the original sequence y. A counting sequence is formed by "counting" the entrie...

oltre 13 anni fa

Risolto


Factorize THIS, buddy
List the prime factors for the input number, in decreasing order. List each factor only once, even if the factorization includes...

oltre 13 anni fa

Risolto


Summing Digits within Text
Given a string with text and digits, add all the numbers together. Examples: Input str = '4 and 20 blackbirds baked in a...

oltre 13 anni fa

Risolto


Given an unsigned integer x, find the largest y by rearranging the bits in x
Given an unsigned integer x, find the largest y by rearranging the bits in x. Example: Input x = 10 Output y is 12 ...

oltre 13 anni fa

Risolto


Knight's Tour Checker
Given a matrix a, determine whether or not a legal <http://en.wikipedia.org/wiki/Knight's_tour knight's tour> is present. The kn...

oltre 13 anni fa

Risolto


Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = ...

oltre 13 anni fa

Risolto


Replace NaNs with the number that appears to its left in the row.
Replace NaNs with the number that appears to its left in the row. If there are more than one consecutive NaNs, they should all ...

oltre 13 anni fa

Risolto


Return a list sorted by number of occurrences
Given a vector x, return a vector y of the unique values in x sorted by the number of occurrences in x. Ties are resolved by a ...

quasi 14 anni fa

Risolto


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

quasi 14 anni fa

Risolto


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

quasi 14 anni fa

Risolto


radius of a spherical planet
you just measured its surface area, that is the input.

quasi 14 anni fa

Risolto


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

quasi 14 anni fa

Risolto


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]

quasi 14 anni fa

Risolto


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

quasi 14 anni fa

Risolto


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

quasi 14 anni fa

Risolto


inner product of two vectors
inner product of two vectors

quasi 14 anni fa

Risolto


Sorted highest to lowest?
Return 1 if the input is sorted from highest to lowest, 0 if not. Example: 1:7 -> 0 [7 5 2] -> 1

quasi 14 anni fa

Risolto


Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...

quasi 14 anni fa

Risolto


Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....

quasi 14 anni fa

Risolto


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

quasi 14 anni fa

Risolto


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

quasi 14 anni fa

Carica altro