photo

Steven Lord

MathWorks

Last seen: Today Attivo dal 2002

Followers: 10   Following: 0

Messaggio

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.

Statistica

All
MATLAB Answers

0 Domande
8.416 Risposte

File Exchange

5 File

Cody

0 Problemi
6 Soluzioni

RANK
13
of 302.115

REPUTAZIONE
18.464

CONTRIBUTI
0 Domande
8.416 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
3.308

RANK
537 of 21.552

REPUTAZIONE
3.297

VALUTAZIONE MEDIA
3.40

CONTRIBUTI
5 File

DOWNLOAD
7

ALL TIME DOWNLOAD
32246

RANK
54.108
of 179.161

CONTRIBUTI
0 Problemi
6 Soluzioni

PUNTEGGIO
70

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE
0

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

Visualizza badge

Feeds

Visto da

Risposto
why matlab won't support file name length more than 63 char?
In release R2025a, the limit on the length of variable names and identifiers was increased to 2048.

1 giorno fa | 0

Risposto
How to shadow the built-in find function
Shadowing functions included in MATLAB can be dangerous, because it can affect the functionality of other functions. In the best...

2 giorni fa | 1

Risposto
functionSignatures.json for built-in functions
I don't believe it's possible to create a functionSignatures.json file that applies to a function in an arbitrary location. Supp...

8 giorni fa | 0

| accettato

Risposto
anonymous function with rng call inside
If you can use a "named" function like Matt J's answer that would proably be cleanest. But if you want to draw numbers from a r...

12 giorni fa | 0

Risposto
How do I reliably extract the date from a string, given that it could be in a number formats and positions?
You have ambiguity in your dates that cannot be automatically determined. s = '368446-SN.24260046-12.08.2026' Does this repres...

21 giorni fa | 0

Risposto
Plotting Symbolic 3x3 System of Equations
%Define symbolic variables and equations syms x y w eq1 = 2*x -y + w == -5; eq2 = y + 3*w == 7; eq3 = w==2; equations = [e...

21 giorni fa | 0

Risposto
Explicit conversion to uint64 results in Conversion failed! error
This is Bug Report 3014238, reported fixed in release R2020b. Using the u64 suffix or wrapping the constant in square brackets a...

circa un mese fa | 0

| accettato

Risposto
how can I count the number of elements on a vector?
There are several questions being asked by the original poster. As of release R2025a to answer the question "How many unique ele...

circa un mese fa | 0

Risposto
"localAgentFunctionsForMemUsage" could not be recognized
My guess is that you've made a copy of one of the examples from the documentation to use as a starting point for your code, but ...

circa 2 mesi fa | 0

Risposto
How to obtain the activation key for the R2026a matlab
If you're trying to use your company or educational institution's license, ask whoever maintains the organization's software lic...

2 mesi fa | 0

Risposto
why does factor(1) return 1? shouldn't it return null?
Technically, yes. If you want prod(factor(x)) to return x and the output of factor to only include prime numbers, having factor(...

2 mesi fa | 0

Risposto
Why does rng('shuffle') always return a Seed of 0 when first run?
This is the correct and expected behavior. When called with an input argument and an output argument, the rng function returns ...

2 mesi fa | 0

| accettato

Risposto
Taking part in the boundary calculation from the function
So you want to ensure that x(3) <= x(1)+x(2)-0.0001? That's not a bound, that's a linear constraint. Write it as -x(1)-x(2)+x(3...

2 mesi fa | 1

| accettato

Risposto
using imaginary notation gives an error (-J)
If by "carrots" you mean an orange squiggle underline in the Editor representing a Code Analyzer warning, and if just the "q1" s...

3 mesi fa | 0

| accettato

Risposto
MATLAB Randomly Changes Values in Array to Scientific Notation
You may think the values in the array are integer values, but they're not. They're just barely different from an integer value. ...

3 mesi fa | 2

Risposto
Teaching Matlab to a visually impaired person
I have not gone through these myself, but I suspect that the MathWorks training courses are accessible for visually impaired per...

3 mesi fa | 1

Risposto
How to calculate the average value of a vector in MATLAB?
If you're not sure what function to use or if there is a function to use for a particular task, I recommend searching the MATLAB...

3 mesi fa | 0

Risposto
Can I solve a symetric system using only the lower triangular portion of the matrix?
The backslash operator (mldivide, \) does not have a way to specify that the coefficient matrix you pass to it actually only rep...

3 mesi fa | 0

| accettato

Risposto
How to set a tolerance?
You indicated you've resolved your problem, but depending on your exact goal some tools that might help you with problems like t...

3 mesi fa | 0

Risposto
Just a question: Will there be a 2026 version for macOS Intel?
From the current System Requirements page for Mac: "Note: MATLAB is no longer available for Macs with Intel processors" The Pla...

4 mesi fa | 1

Risposto
Solving diffeerntial equations numerically
If you use the ode object you can call its solve method to return the solution at specified times. If you're using a specific O...

4 mesi fa | 0

Risposto
How can I dynamically create and configure a subclass of an abstract class from a file or script in one step in MATLAB?
As written, each time you add a new type of Vehicle you need to modify Garage to be able to handle that new type of vehicle. Thi...

4 mesi fa | 0

Risposto
Access to downloads for install
If you already have a license but need information on where/how to download the software to be installed, please contact Custome...

4 mesi fa | 0

Risposto
How to find a function in the path - securely?
The complexity explodes, such that a simple task like searching a function file needs a pile of exceptions and indirections. S...

4 mesi fa | 1

Risposto
computation of symbolic terms and error analysis
You indicated you've already found the solution (the expression you're trying to convert to double still has symbolic variables ...

5 mesi fa | 0

Risposto
Can you get matlab to add a really small number to a big number and retain precision
p = -1e17 + sqrt(1e34 + 1e18) p is in fact exactly 0 if you do the calculation in double precision. p == 0 % true Why didn't ...

5 mesi fa | 3

| accettato

Risposto
trainnet function - randomness and repeatability
What happens when you reset the state or seed of the random number generator before each attempt to train the network? Let's cho...

5 mesi fa | 0

| accettato

Risposto
Trying to solve for a number of variables in a matrix. Getting a structfun error.
Let's look at what solution is after the call to solve. I just added in a few semicolons to suppress some of the output. E = 10...

5 mesi fa | 0

Risposto
Financial Toolbox installed but bndprice function not found
According to the output of ver that you posted, you're using MATLAB Online (basic). According to the FAQ on the page describing ...

5 mesi fa | 0

Risposto
Reading a string & sorting it into usable variables
Let's take a sample string. S = "Layup: [45/-45/0/90/90/0/-45/45]"; Get the text after the leading [ S2 = extractAfter(S, "["...

6 mesi fa | 0

Carica altro