photo

Stephen23


Active since 2014

Followers: 14   Following: 0

Suspensa Vix Via Fit

Statistics

All
MATLAB Answers

4 Questions
9,163 Answers

File Exchange

22 Files

RANK
5
of 299,252

REPUTATION
35,691

CONTRIBUTIONS
4 Questions
9,163 Answers

ANSWER ACCEPTANCE
75.0%

VOTES RECEIVED
5,906

RANK
68 of 20,672

REPUTATION
13,115

AVERAGE RATING
4.90

CONTRIBUTIONS
22 Files

DOWNLOADS
967

ALL TIME DOWNLOADS
102285

RANK

of 163,923

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

  • Most Accepted 2024
  • Most Accepted 2023
  • Personal Best Downloads Level 5
  • Editor's Pick
  • Most Accepted 2022
  • Most Accepted 2021
  • Grand Master
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 3
  • First Submission
  • 36 Month Streak

View badges

Feeds

View by

Answered
Output doesn't display a value, just an empty space.
How many values fulfill your logical comparisons? Exactly one. range_x = x(x>=xmin & x<=xmin); range_d2S1 = d2S1(x>=xmin & x<=...

1 day ago | 1

| accepted

Submitted


Hyphenate
Word hyphenation using Franklin Mark Liang's algorithm (aka Knuth-Liang algorithm). Used in TeX and LaTeX

2 days ago | 2 downloads |

0.0 / 5
Thumbnail

Submitted


CubeHelix Colormap Generator: Beautiful and Versatile!
A versatile implementation of the CubeHelix algorithm to create colormaps (suitable for grayscale conversion)

2 days ago | 13 downloads |

4.9 / 5
Thumbnail

Submitted


ColorBrewer: Attractive and Distinctive Colormaps
The complete palette of ColorBrewer 2.0 colormaps. Simple selection by scheme name and map length.

2 days ago | 286 downloads |

4.9 / 5
Thumbnail

Answered
Stretching a rectangle over a date axis
"How can I fix this?" Use RULER2NUM, which converts from the ruler values (e.g. DATETIME) to numeric, correctly accounting for ...

17 days ago | 1

Answered
.mat file no longer shows variable selection GUI when loading in MATLAB R2025a
Make sure that this is selected: Settings => MATLAB => General => Confirmation Dialogs => Show Import Tool dialog for importing...

22 days ago | 0

| accepted

Answered
Is Matlab 2021b still in support?
"A user is asking if Matlab 2021b is still in support..." Yes. TMW never really stops supporting their products (AFAIK if you h...

1 month ago | 1

Submitted


Number to Words
Convert a numeric to a string with the English name of the number value (GB/IN/US).

1 month ago | 8 downloads |

5.0 / 5
Thumbnail

Submitted


Words to Number
Convert English number name/s written in a string to numeric value/s (GB/IN/US).

1 month ago | 3 downloads |

0.0 / 5
Thumbnail

Answered
How do I add the sum of 1st 3 elements of a vector in a for loop?
a = [32,19.41,11.77,7.14,4.33,2.63]; m = 3; s = sum(cumsum(a(1:m))) or s = a(1:m)*(m:-1:1).' or s = dot(a(1:m),m:-1:1) or...

1 month ago | 0

| accepted

Answered
How to plot specific rows from table
Simple Solution: Instead of trying to plot two tables, it would be much better to plot the table content. It just requires chan...

1 month ago | 1

| accepted

Answered
Cannot set text to UIaxes because cannot set position since xaxis is made of datetime
The basic approach is to supply an x-value which is a DATETIME object: figure() X = datetime(2025,6,1:6); Y = rand(1,6); plo...

1 month ago | 1

| accepted

Answered
Merging multiple dictionaries with cell arrays
A = dictionary({"type","value"},{"temporary",1}); B = dictionary({"color"},{"blue"}); If you want to create a new merged dicti...

1 month ago | 0

| accepted

Answered
How does Matlab extract the three columns of data from the ".out" file output by Fluent? What is the code? The attachment file is the data.out
unzip data.zip T = readtable('data.out', FileType='text', Range=3, Delimiter=["(",")"," "], ... VariableNamingRule='preser...

2 months ago | 0

Answered
ODE event callback function does not update the solution vector
"The cause is the way the nargout function handles the event and callback functions." The cause is because you are testing anon...

2 months ago | 0

| accepted

Answered
How to add a title with mixed italic and normal text with Tex interpreter?
There might be better ways, but this seems to work: title("\it Italic title part 1 \rm\bf and \it Italic title part 2", 'In...

2 months ago | 1

| accepted

Answered
How to set variable names using Readtable with hierarchical categories (Excel file with merged cells / multiple header rows)
In lieu of a sample data file I created my own (attached) which looks like this (not all columns shown): If you must keep tha...

2 months ago | 2

| accepted

Answered
Is the Ordering of the Output from combinations() Documented, Repeatable, and Sensible?
1. "Is the ordering of the output rows from combinations documented?" Implicitly. The COMBINATIONS description states "These c...

3 months ago | 0

| accepted

Answered
Cell array Filtering when using readlines
Do not store lots of scalar strings in a cell array, doing so makes processing them harder: https://www.mathworks.com/help/matl...

3 months ago | 0

| accepted

Answered
Why READTABLE skips the first line ?
"Why READTABLE skips the first line ?" Possibly because all of the text are shared strings, which perhaps confuses the READTABL...

3 months ago | 0

Submitted


Interactive Regular Expression Tool
Develop and refine regular expressions in an interactive figure that shows all of REGEXP's outputs.

3 months ago | 3 downloads |

4.8 / 5
Thumbnail

Answered
Using CurrentPoint in UIAxes in AppDesigner with timedate x axis
Because all of the data are returned in one array any datetime values are converted into a numeric equivalent (i.e. to provide o...

3 months ago | 2

| accepted

Answered
More unexpected behavior multiplying an array with a double
"I am getting unexpected results when I muliply an array by a double" It is not unexpected, because your data are not what you ...

3 months ago | 1

Answered
How can I get unique entries and their counts and place back into the table?
"I think is due to (x) not being defined or non existing. " No, it is because you invented some syntax when defining the anonym...

3 months ago | 0

Submitted


Number to Scientific Prefix
Convert a numeric value to SI-prefixed text (aka engineering / metric prefix). Bonus: binary prefixes!

3 months ago | 2 downloads |

4.8 / 5
Thumbnail

Submitted


Scientific Prefix to Number
Convert SI-prefixed text (aka engineering / metric prefix) into numeric values. Bonus: binary prefixes!

3 months ago | 1 download |

5.0 / 5
Thumbnail

Answered
MATLAB loads file it cannot find
"How is it possible, that MATLAB can load a file that it cannot find?" Because of what you did: "...the folder where the files ...

3 months ago | 1

| accepted

Answered
Read .txt file with dots in filename
"All my current tries using for example "load" or "readmatrix" failed since Matlab always assumes everything after the first dot...

3 months ago | 1

| accepted

Answered
How to sync Matlab file location and current pwd of command window?
Do NOT use CD for this. This is exactly what the MATLAB Search Path is for: https://www.mathworks.com/help/matlab/matlab_env/w...

3 months ago | 1

Answered
Matrix size error using integral
"which makes no sense since I'm multiplying scalars." Nope, you aren't. "Why is this?" Because you are multiplying vectors. T...

3 months ago | 0

| accepted

Load more