Community Profile

photo

Steven Lord

MathWorks

Last seen: Today 2002 年からアクティブ

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

All
  • Treasure Hunt Participant
  • Scavenger Finisher
  • Thankful Level 5
  • Master
  • Solver
  • Personal Best Downloads Level 2
  • Editor's Pick
  • 36 Month Streak
  • 5-Star Galaxy Level 4
  • First Submission
  • Revival Level 3
  • Knowledgeable Level 5

バッジを表示

Content Feed

表示方法

回答済み
Assigning equation output to second row of a matrix
Implicit expansion. velocity = (1:3).'; % column vector thrust = 10:14; % row vector A = velocity./thrust % Dividing results ...

約16時間 前 | 0

| 採用済み

回答済み
ode45 graph issue
Instead of defining your integrand function piecewise like this: % Define the thrust as a function of time T = @(t) 6500*(t<=1...

約16時間 前 | 0

回答済み
I want to extend my license.
For this licensing question please contact Customer Service directly using the Contact Support link under the Get Support headin...

約17時間 前 | 0

回答済み
Does Matlab provide any tools to understand the contents in an image and describe it using words?
There are examples in various products (mainly using Deep Learning Toolbox and/or Computer Vision Toolbox) to perform image clas...

約17時間 前 | 0

回答済み
Getting values separated by commas from a string array
You can do this with split and double. S = ["52,884,410" "44,878,410" "46,896,410" "82,941,410"] S2 = split(S, ",") D = do...

1日 前 | 1

回答済み
Philosophical question: How to get a vector from the output of solve? Why isn't it a vector already?
syms x y sol = solve(x == 5, y^2 == 4) sol.x sol.y How exactly would you want those two solutions to the system of equations...

1日 前 | 0

| 採用済み

回答済み
How do I return to the twice above calling function?
Rather than having your CheckforErrors function return true or false as the first output argument I'd have it throw an error usi...

1日 前 | 0

| 採用済み

回答済み
License available after enddate
Please send this licensing question to Technical Support directly using the Contact Support link under the Get Support heading a...

2日 前 | 0

回答済み
How can I obtain all possible combinations of given vectors in MATLAB?
As of release R2023a you can use the combinations function in MATLAB for this task. T = combinations(1:3, 4:6) While combinati...

6日 前 | 1

回答済み
streamline line value v=atan(y/x) not giving me "Warning: Matrix is singular to working precision"
I'd recommend using atan2 instead of dividing. If you had to divide, use element-wise division (the ./ operator) instead of matr...

6日 前 | 1

| 採用済み

回答済み
No out of memory error but matlab crash
Did MATLAB crash or did the operating system kill it? Check if there's a message in the log file that the Out of Memory (OOM) ki...

6日 前 | 1

| 採用済み

回答済み
How to Draw a Pentagon or Polygon by Using Function
Why not just use nsidedpoly? P = nsidedpoly(5); plot(P); axis equal

6日 前 | 1

回答済み
I am getting parse error for this following simple program
Please show us the full and exact text of the warning and/or error messages you receive (all the text displayed in orange and/or...

7日 前 | 0

回答済み
Toolbox have added. And the m-file of the function can be found buy 'Which'. However, ERROR: function need the Toolbox
In order to run a function from a toolbox two conditions must be true. I'm going to write in the context of a desktop installati...

7日 前 | 0

回答済み
How do you include a mass matrix in ode45?
The "Summary of ODE Examples and Files" section on this documentation page lists a number of examples and indicates which of the...

8日 前 | 0

回答済み
how ode solver works
I am looking for knowing or displaying time step in ode solver. At what point during the solution process? If you're trying to ...

8日 前 | 0

| 採用済み

回答済み
Problems accepting integer values with power and algebraic symbols using inputdlg
The str2double function is a bit particular about the formats of text that it will convert to double. The format you've describe...

9日 前 | 2

回答済み
Not valid variable name despite variable declaration i MATLAB app designer.
'app.para_BF_new' is not a valid variable name. The error message is correct. 'app.para_BF_new' is not a valid variable name. I...

9日 前 | 0

| 採用済み

回答済み
How to find the original vector given the outer product of the vector?
n = 3; psi1 = rand(n,1) + 1i * rand(n,1) outer_product1 = psi1 * psi1' psi2 = 1i*psi1 outer_product2 = psi2 * psi2' norm(ou...

9日 前 | 0

回答済み
How to get the workspace of a debugged function, from within a GUI debugger
Why not just use the debugging tools included in MATLAB?

10日 前 | 0

回答済み
Undefined function or variable 'sigma_sj'. Error in m_phi_code (line 110) Ps_j = sigma_sj*(N/2)*(3.14/4)*d^2*0.001; why this error is showing?
What value should sigma_sj have if none of the conditions in your large if / elseif / elseif / ... statement are satisfied by th...

11日 前 | 1

回答済み
Listmonth and listyear functions
I find no entry for a function named listyear in the Help Center. There is one item in the search results for listmonth but it i...

11日 前 | 0

回答済み
Why does str2num take much longer to convert 1001 long char array apposed to a 1000 long char array (MatLab R2010b 64bit, on Win 64bit)
What's your ultimate goal here, of which I suspect this conversion is one step in a larger process? If you want to generate 100...

11日 前 | 0

回答済み
Using a matrix as an index of another matrix
Take some shuffled data. r = randperm(10) Now sort it. [sortedData, indices] = sort(r) We can get back to r from sortedData ...

12日 前 | 0

回答済み
class 'matlab.io.datastore.PixelLabelDatastore' is not allowed. Error !!!!!
You can make an array of numeric data in MATLAB. A = [1 2; 3 4] You cannot make an array of PixelLabelDatastore objects like t...

12日 前 | 0

回答済み
Taking away transfer functions
by hand this should give me (5s-90)/s but MATLAB is giving me (5s^2-90s)/s^2 Assuming s isn't 0 (in which case evaluating your ...

12日 前 | 0

| 採用済み

回答済み
New Workplace variable from Table
Is there a way to code a script to do this without manually picking the columns? Or a way to create new workplace variables from...

12日 前 | 1

| 採用済み

回答済み
Datastore problems with deep learning. "FileExtensions Name-Value"
The imageDatastore object's documentation page states, in the description of the location input argument, that it "supports file...

12日 前 | 0

回答済み
App designer and runtime compiler problem for creating exe file
I created an app with app designer and with Matlab 2021a version. I also download Matlab Runtime (version 2021a). If you down...

13日 前 | 1

回答済み
How do I receive modelling help/support for my Master Thesis Project?
If you have questions that reasonably fall under the responsibility of Technical Support (more "Why do I receive error X when I ...

13日 前 | 2

さらに読み込む