photo

Dan Seal

MathWorks

Active since 2013

Followers: 0   Following: 0

Message

Statistics

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

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

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

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

11 years ago | 0

| accepted