
Jason Whitfield
MathWorks
Statistics
0 Questions
10 Answers
RANK
1.123
of 260.051
REPUTATION
46
CONTRIBUTIONS
0 Questions
10 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
7
RANK
of 17.884
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 111.608
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
Content Feed
can someone explain this code?
The basic idea of the code is that you optimize the parameters of the ODE so that it matches your experimental data as closely a...
casi 4 años ago | 0
| accepted
How to add a column to a matrix by matching element (attached data)
As an alternative, you could use tables to accomplish this. It already looks like your data is formatted as a table. To do it, d...
casi 4 años ago | 1
| accepted
how to see live plot of my voice ?
As the name suggests, the recordblocking method will block the execution of the rest of the script until the recording finishes....
casi 4 años ago | 3
| accepted
Is it possible to send commands to Arduino through WiFi?
You should be able to run a tcp server on the Arduino and connect to it using MATLAB. See <https://www.mathworks.com/help/matlab...
casi 4 años ago | 1
How to access an individual value of MWNumericArray
Try using the ToArray method. e.g. double[] values = output.ToArray(MWArrayComponent.Real); You should then be able to i...
casi 4 años ago | 0
| accepted
Is there a way to plot multiple files using a loop in matlab?
Instead of manually creating date strings, try using the datetime object. It can be iterated like you want, and then you can cre...
casi 4 años ago | 0
| accepted
Mex file error with UHD
It looks like a linking error to me. The compiler found the headers for the UHD library but not the actual compiled code. Try fi...
casi 4 años ago | 1
| accepted
How to split a double array in left and right sides?
You can do this with just matrix indexing. To get the left half of a matrix, you can index it with the expression "1:floor(end/2...
casi 4 años ago | 0
| accepted
Can I display a text from a textbox into the command window?
If you have a handle to the textbox, you can access its text through its "String" property. You can get a handle to it with the ...
casi 4 años ago | 0
plot piecewise 3d function
In your code, the following line will overwrite your "omega" variable with a symbolic variable. syms k(omega) l_1(omega) l_...
casi 4 años ago | 1
| accepted