Taylor
MathWorks
Followers: 0 Following: 0
I like neuroscience, signal processing, machine/deep learning, and building apps!
Python, MATLAB, SQL
Spoken Languages:
English
Pronouns:
They/them, He/him
Professional Interests:
App Building, Deep Learning Toolbox, Statistics and Machine Learning Applications, Brain Computer Interfaces
Statistics
RANK
486
of 293,982
REPUTATION
156
CONTRIBUTIONS
0 Questions
120 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
14
RANK
of 20,065
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
How to fill the space between two surfaces?
If you are looking to plot the volume of filled space between the two surfaces, I believe this post has the answer you're lookin...
5 days ago | 0
| accepted
Error during training: Invalid training data. Y must be a vector of categorical responses.
It looks like you are trying to train a network for image segmentation using only a single image as training data. This will not...
5 days ago | 0
I have a ECG signal along with a respiration signal, I need to filter it to separate the ECG and the Respiration signals. Also, extract the QRS complex from the filtered ECG.
I think this example will help you get started. I would also recommend looking at the findpeaks function. Looking at the File Ex...
5 days ago | 0
| accepted
What can I do to make the output characteristic of the network is two value, that is the implement multivariate input and multivariable output
numResponses in your code is the value that determines the number of outputs from your network. Change that from "1" to "2" to g...
6 days ago | 0
Heatmap doesn't show the values
I'm not able to reproduce this in R2024a myself either. You can assign the output of heatmap to a variable to access the heatmap...
6 days ago | 0
How to store an array of headers in a MAT file?
I would recommend using switch/case. It might look something like this in practice switch size(data, 2) % Switch based on the n...
7 days ago | 0
I'm just trying to make a function file with the function f(x)=e^cosx -x^3+2x^2+5x-3
function y = myFunc(x) y = exp(cos(x)) - x^3 + 2*x^2 + 5*x -3; end
7 days ago | 0
How do I access properties of Matlab handle objects in compiled python packages using only the runtime?
print(dir(myObj.__dict__))
9 days ago | 0
How can I freeze or stop interaction of the background MATLAB and SIMULINK windows until my dialog(progressbar) is open?
You can use uiwait to block the execution of MATLAB and SIMULINK.
12 days ago | 0
MATLAB standalone app installation without administrator
If you install the runtime without admin rights you shouldn't need admin rights to run your executable
20 days ago | 0
Do graphs work in Custom Components?
Yes, graphs work in custom components. Are you using an "axes" object or a "uiaxes" object in the component? Sharing the code fo...
23 days ago | 0
Postpone Text Output in Live Scripts
My recommendation would be to assign all of the text you want to print to a single string array and just display that at the end...
23 days ago | 0
websave - Showing download progress
I'm not sure there is a straightforward way to accomplish this beacuse websave does not give you any intermittent updates on the...
1 month ago | 0
How to split my EMG signal into individual cycles?
I would recommend using the findpeaks function. You can set a minimum amplitude value (Threshold) and minimum time between cycle...
1 month ago | 0
Training a neural network for different operating points
You'll want to use a sequenceInputLayer. I would recommend following this example, seems similar to the task you've described.
1 month ago | 0
Experiment Manager stucks on "Stopping Trial"
Hi Danial and Nivedita. This is a known bug that development is actively working on. It will be patched in an upcoming release!
1 month ago | 0
| accepted
How to set the GraphicsSmoothing off in appDesigner UIAxes?
GraphicsSmoothing is a property of figures, not axes, UIAxes, or UIFigures. You would have to create a separate figure window fr...
1 month ago | 0
Why I can't save my data in a .mat when using WebAppServer?
I believe you need to specify the local path to which you are saving. You can do this with save, or you might want to check out ...
1 month ago | 0
Outerjoin isn't matching the same values in two different tables
MATLAB seems to be recognizing those datetimes (indexed at 577 and 578) as unique values load('timevecTable.mat') load('v2Tabl...
3 months ago | 0
Remove column based on row value
A = [1 2 5; 3 4 6; 2 8 9] colsToKeep = ~any(A > 4, 1) B = A(:, colsToKeep)
3 months ago | 0
| accepted
how to plot accuracy?
You're using your test data as validation data. Ideally, you should have training data that is used only to train the model, val...
3 months ago | 0
Measuring different parts of a region within a binary-masked image
I used the Color Thresholder app to create a function that transforms the cropped image from the RGB to Lab colorspace and thesh...
3 months ago | 1
| accepted
How to resolve this
As stated, functions in MATLAB must be defined as: function y = myFunc(x) %% Do something end If the function is in a file b...
3 months ago | 0
Inserting variables into strings?
The modern "string" datatype is much more intuitve in my opinion, so I recommend Voss' approach over using "fprintf" or "sprintf...
3 months ago | 0
In Diagnostic Feature Designer, how can I change the color for each signal in plot?
I have reproduced this issue and confirmed it is a bug with the Diagnostic Feature Designer. The bug has been reported to the de...
3 months ago | 0
| accepted
import txt file in matlab
The problem is that "d" is not a structure so dot indexing does not apply.
3 months ago | 0
Multivariate LSTM data preparation
I think this example on time series forcasting is what you're looking to replicate.
3 months ago | 0
How to define the size between multiple symbolic variables and sort these symbolic elements
Define your constraints using assume and assumeAlso syms c1 c2 c3; assume(abs(c1) >= abs(c2)); assumeAlso(abs(c2) >= abs(c3)...
3 months ago | 0
how to skip lines that start with a certain character while reading a text file
I would just load the data as a string and use the erase function to remove the "#"
3 months ago | 0
Is there a reason why {'charVector'} is not considered a text scalar for argument validation purposes?
Apologies, I should have said " A cell array is not necessarily interpretted as "text" ". I think I have a more complete underst...
4 months ago | 1
| accepted