
Steven Lord
MathWorks
I joined The MathWorks in the Technical Support department during the summer of 2001 and transferred into the Quality Engineering department in March of 2004. I now work qualifying the core MATLAB numerical functions (PLUS, MINUS, LU, FFT, ODE45, etc.)
Professional Interests: mathematics, MATLAB
For assistance with MATLAB question please post to MATLAB Answers or contact Technical Support using the Contact Us link in the upper-right corner of the page instead of contacting me directly.
Statistics
RANK
13
of 273,515
REPUTATION
15,196
CONTRIBUTIONS
0 Questions
7,059 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2,594
RANK
496 of 18,459
REPUTATION
3,260
AVERAGE RATING
3.40
CONTRIBUTIONS
5 Files
DOWNLOADS
30
ALL TIME DOWNLOADS
31871
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Matlab file MAC - Script Error
Did you already have a copy of the file in the directory to which you downloaded? I'm not sure if Mac behaves the same way as Wi...
6 hours ago | 1
Calculations wrong in appdesigner
Result should be 315.5 but is not?? So what is it if it's not 315.5? Since you said this is part of an app my guess is that on...
10 hours ago | 0
Output of values via a callback function
For this particular question you could addpoints to an animatedline inside the callback function. Each press of the button callb...
10 hours ago | 1
Error using feval Function to evaluate must be represented as a string scalar, character vector, or function_handle object.
Another approach, if you don't want to work symbolically as @Walter Roberson did, is to create an anonymous function. All I need...
4 days ago | 1
| accepted
Using accumarray for histcounts2 with >1024 bins in 1 dimension
MATLAB limits the number of bins if you specify BinWidth. If you specify a list of edges MATLAB will use that list of edges to d...
4 days ago | 0
| accepted
For very long solution result Workspace doesn't show the full answer
Rather than trying to read 100 pages of text, a couple of options that may suit your needs: call the ccode function convert th...
4 days ago | 0
Matlab built-in function not identified
According to a search there are several different functions named coefTest in Statistics and Machine Learning Toolbox. From a qu...
4 days ago | 0
How to solve: Limits must be a 2-element vector of increasing numeric values.
Let's look at a couple sections of your code. I'm going to comment out the function declaration line so I can run this in Answer...
5 days ago | 0
How to plot binned data from a table?
Take a look at the "Aggregate Timetable Data and Calculate Mean Values" example on the retime documentation page.
5 days ago | 0
Question about toolbox dependencies
The behavior you described for iqr is not a bug. The Version History on the documentation page for the iqr function in MATLAB f...
5 days ago | 0
| accepted
Add suffix to name of all variables in workspace
Can you dynamically create variables with patterned names like a_test, b_test, c_test, etc.? Yes. Should you do this? The gener...
5 days ago | 0
| accepted
How to round values of table with mixed types?
Using a sample table: Temp = [37.3;39.1;42.3]; Pressure = [30.1;30.03;29.9]; WindSpeed = [13.4;6.5;7.3]; WindDirection = cat...
5 days ago | 0
What is an LAPACK loading error when using polyfit?
There are two Bug Reports that look potentially relevant to this situation. One was fixed in release R2014b and the other in rel...
5 days ago | 0
How to create a datetime array in C++
The datetime function supports the Extended Capability of C/C++ Code Generation (with some limitations listed on its documentati...
5 days ago | 0
| accepted
Time and Space Efficiency Problem in Multi-Format .csv file Splicing and Saving
Assuming your data files don't have any header rows, I'd consider avoiding the read/save process and just use operating system c...
6 days ago | 0
| accepted
How to read the result of fprintf
ID = 42; fprintf('set %d\n', ID); When called with that syntax, fprintf does not write to a file. It writes to the Command Win...
7 days ago | 0
Inquiry about companies using Matlab for motor controller design of EVs powertrain
You could search the customer stories for stories about electric vehicles and motor control.
7 days ago | 0
numerical integration inf to inf
Look at your function over the region in question. e=0.01; f= @(x) 1./sqrt((1-x.^2)+(e/2)*(1-x.^4)); a=-1; b=1; fplot(f, [-...
8 days ago | 0
Viewing Symbolic Matrix Entries in Variable Tab?
If you're planning to use the symbolic expression in a loop you may want to create a MATLAB function file from it using matlabFu...
9 days ago | 1
Grey Wolf optimizer in matlab
The ability to define local functions in scripts was introduced in release R2016b.
9 days ago | 0
| accepted
App designer: How to define self-referring properties?
That code does not define a variable named x. It defines an object property named x. You're assuming that defining one property...
11 days ago | 1
| accepted
rng usability missing seed functionality
It looks like using "seeds" is being considered "old fashioned" in Matlab 2022b, and there is a warning about it suggesting it w...
11 days ago | 0
| accepted
How do I use matlab.uitest.TestCase to open my app once and perform multple function tests?
You could do this by opening your app in a TestClassSetup method and storing a handle to it in a property of your test class, bu...
12 days ago | 1
| accepted
How can I access the following builtin function code? [L,p] = chol(A,'lower')
We don't distribute the source code for the built-in chol function.
12 days ago | 0
| accepted
Trying to Increase efficiency by avoiding using If statements to select data
Can you dynamically create and access variables with numbered names like x1, x2, x3, etc. or similar names like L_Data and R_Dat...
12 days ago | 0
Is Home version an annual-basis or one-time purchase?
For your first question does the MATLAB Home product page (and the FAQ at the end of that page) provide you with sufficient info...
13 days ago | 0
| accepted
How to Convert symbolic variables to numeric
If it contains no symbolic variable use double. two = sym(2); sqrt2 = sqrt(two) x = double(sqrt2) If it does contain a symbo...
13 days ago | 0
Why in the Test Manager; option of select New > Test for C/C++ Code is not appearing?
According to the Release Notes the capability to perform C/C++ code testing in the Test Manager was introduced in release R2021a...
14 days ago | 0
| accepted
How to separate real and imaginary components from a given expression in Matlab?
syms X1 X2 XC RL Zin=((X1*XC)-1i*(X2*RL))/(RL+1i*(X1*X2*XC)); A=real(Zin) B=imag(Zin) What leads you to believe something ...
15 days ago | 1
| accepted
ODE solver not running full time span
That suggests to me that you should have received a warning but perhaps you've suppressed it? Something along the lines of "Fail...
15 days ago | 0