photo

Daniel Svedbrand


Last seen: 7 months ago Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
3 Answers

RANK
1,429
of 300,618

REPUTATION
50

CONTRIBUTIONS
0 Questions
3 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
21

RANK
 of 21,030

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 169,839

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
Finding unique dates in vector
unique_dates = unique(dateshift(Date,'start','day')); if Date are datetimes, otherwise unique_dates = unique(dateshift(datetim...

9 months ago | 0

Answered
Multi-line legend strings
use \newline instead of \n and skip "sprintf" legend('hello\newlineworld');

7 years ago | 5

Answered
Changing the atan function so that it ranges from 0 to 2*pi
Adding mod 2*pi to atan2 should work just fine z = mod(atan2(y,x),2*pi);

7 years ago | 16

| accepted