photo

Dan Seal

MathWorks

Active since 2013

Followers: 0   Following: 0

Message

Statistics

All
MATLAB Answers

0 Questions
4 Answers

File Exchange

2 Files

Cody

0 Problems
63 Solutions

ThingSpeak

1 Public Channel

RANK
3,879
of 300,343

REPUTATION
14

CONTRIBUTIONS
0 Questions
4 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
6,220 of 20,926

REPUTATION
186

AVERAGE RATING
5.00

CONTRIBUTIONS
2 Files

DOWNLOADS
8

ALL TIME DOWNLOADS
1011

RANK
9,444
of 168,172

CONTRIBUTIONS
0 Problems
63 Solutions

SCORE
670

NUMBER OF BADGES
2

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
1 Public Channel

AVERAGE RATING
50

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Personal Best Downloads Level 1
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 3
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • CUP Challenge Master
  • Solver

View badges

Feeds

Answered
Using FGETL to skip 2 header lines
A good way to read data from text files with headers is with the |textscan| function. When calling |textscan|, you an specify a...

12 years ago | 0

Answered
Find values and replace them with NaN, add total number of NaN values.
To replace all -9999 values with NaN, you can do: mintemp(mintemp == -9999) = NaN; If you have Statistics Toolbox, you...

12 years ago | 3

| accepted

Answered
location of non zeros
Use the logical ~= (not equal). This is not an assignment, but rather a test to see where two things are not equal to each othe...

12 years ago | 0

Answered
What is the syntax for subscripts in a plot text box?
UICONTROL objects do not support LaTeX or TeX markup. If you search "uicontrol tex" or "uicontrol latex" on Google, you will se...

12 years ago | 0

| accepted