Community Profile

photo

Cris LaPierre

MathWorks

Last seen: Today Active since 2018

Statistics

All
  • 36 Month Streak
  • Community Group Solver
  • Thankful Level 4
  • Most Accepted 2021
  • Ace
  • Revival Level 4
  • Solver
  • Knowledgeable Level 5
  • First Answer

View badges

Content Feed

View by

Answered
Como encontrar velocidad y posicion a partir de un archivo csv de a(t)
La integracion de su curva de acceleracion es velocidad, y la integracion de su curva de velocidad es posicion. Puede usar cumtr...

ungefär 6 timmar ago | 0

Answered
Ho do I receive access to this url: https://matlabacademy.mathworks.com/#getting-started
That is not its own course, but it is part of the Solving Nonlinear Equations with MATLAB course. This course, along with the ot...

ungefär 6 timmar ago | 0

Answered
3hr time avarage plot of data
This problem is made much simpler if you leverage the capabilities of cdfread. It can read in cdfepochs as datetimes, simplifiin...

ungefär 17 timmar ago | 0

| accepted

Answered
Error: Unexpected MATLAB expression.
You are missing your closing paretheses, as well as a comma to separate the final line from the cell array.. [nama_file1, nama_...

ungefär 18 timmar ago | 0

Answered
Cannot type symbols on dead keys (e.g., to write ', ", or ^)
If those keys are only not working in MATLAB, please report this as a bug to customer support: https://www.mathworks.com/support...

en dag ago | 0

Answered
How to find derivatives using the diff command
I think this is the page you want: https://www.mathworks.com/help/symbolic/diff.html

en dag ago | 0

Answered
Problem with integration using sym in case of "sym is not convertible to double"
See this answer: https://www.mathworks.com/matlabcentral/answers/318185-error-double-cannot-convert-the-input-expression-into-a-...

2 dagar ago | 0

| accepted

Answered
Matrix dimensions must agree. Error in Untitled (line 22) E_net=E_PV-L; .........................error in subtract op,,,,
For the matrix subtraction operation to work, L must either be a scalar, or be the same size as E_PV. The only way I can reprod...

2 dagar ago | 1

Answered
I cant type anything in the editor.
Please contact support.

2 dagar ago | 1

Answered
HEUR malware found while installing MATLAB R2023a
I suggest reporting this to customer support. You can also follow these instructrions from Avira about potential false positives...

2 dagar ago | 0

Answered
Unable to find file or directory 'ovariancancer.mat'.
Beginning in R2023a, the product documentation is no longer installed by default (see here). You may have noticed when you insta...

3 dagar ago | 3

| accepted

Answered
Using ode45, how can I help ode45 keep track of a calculated value in my ODEFUN function while not treating it as a derivative?
I think you can just add it to your derivative vector. The only thing that treats it as a derivative is how you use it. Here i...

3 dagar ago | 0

Answered
What am I doing wrong?
ex2d is a function you have written that requires 2 inputs: t and y. You are trying to run it without supplying the inputs. Ins...

3 dagar ago | 0

Answered
How do I solve this error?
When defining your rlQValueFunction, include the ActionInputNames and OvservationInputNames name-value pairs. See this example:...

3 dagar ago | 0

| accepted

Answered
Sine curve fitting in MATLAB
For fminsearch to work correctly, your function must return a scalar. From the fminsearch documentation: "fun is a function tha...

3 dagar ago | 1

| accepted

Answered
How to filter two columns of a table in MATLAB, determine the average and count the data in the columns
Use groupsummary If you have shared your data instead of a screenshot, we could test the settings, but you probably want someth...

4 dagar ago | 1

Answered
Function only computing first element of array used as input
Your function is not written to accept a vector as input. You likely need to add a second loop to run for each element of your i...

4 dagar ago | 0

| accepted

Answered
Find value in one row that corresponds to value within another row in the same table column
T = table([1;2],[2;4],[3;6],[4;8]) T(2,T{1,:}==3)

4 dagar ago | 1

Answered
mapshow - I can't seem to plot a geoTIFF
Your variable R is a GeographicCellsReference object. However, mapshow specifies that R must be either a MapCellsReference or Ma...

4 dagar ago | 0

| accepted

Answered
how to perform excel goal seek in Matlab?
If you have the optimization toolbox, I suggest using the Optimization Live Editor Task (Problem based) to solve this. You could...

4 dagar ago | 0

Answered
Replace table elements in more than one row
You can, but the code you wrote is trying to replace a single element with a vector, hence the error message. When you are tryi...

5 dagar ago | 1

Answered
Indexing One Column from 4D Array?
one of the variables has 262708992 elements while the other has 716. You haven't specified which row, column, and page you want ...

5 dagar ago | 0

Answered
"Array indices must be positive integers or logical values"
Your indices must be positive integer values (or logicals), as the error message states. It is therefore most likely either V1i(...

5 dagar ago | 0

Answered
Connect edges in image Matlab
bwmorph with the 'bridge' option only closes gaps that are 1 pixel wide. Consider turning your grayscale image into a binary i...

5 dagar ago | 0

Answered
How do you open multiple .txt files with names count_#.txt where # goes from 1-4?
I would use a filedatastore to load all the data into a single variable. You can see an example of how to use one to do this in ...

6 dagar ago | 0

Answered
I cannot access SimDriveline through matlab license I obtained through my university
Does your license include Simscape Driveline? (#1 below) Simscape Driveline requires you have Simulink and Simscape installed a...

6 dagar ago | 0

Answered
Extract a table of values from a website
See this answer: https://www.mathworks.com/matlabcentral/answers/624818-webread-fails-to-get-all-data#answer_562368

6 dagar ago | 0

| accepted

Answered
help: I need to solve the problem of the function "lsqcurvefit" I have an error when I started to run the program
The error message mentions 'dot indexing', which means you have likely forgotten a multiplication symbol in your equation. I fou...

6 dagar ago | 0

Answered
Why does not the example of "Solve Partial Differential Equation with L-BFGS Method and Deep Learning" with fmincon exist anymore on mathworks web site?
I do not know the reasons why the example was updated. Incidentally, you can still locate it in the R2022b version of the docume...

7 dagar ago | 0

| accepted

Load more