Community Profile

photo

Taylor

MathWorks

Last seen: 3 days ago Active since 2023

Followers: 0   Following: 0

I like neuroscience, signal processing, machine/deep learning, and building apps!

Programming Languages:
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

All
  • Knowledgeable Level 4
  • 3 Month Streak
  • Community Group Solver
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • First Answer

View badges

Feeds

View by

Answered
Align various discontinous data sets into a chronological ordered matrix
Have you looked into timetables? Seems doable with the synchronize function.

5 days ago | 1

Answered
How to apply PCA for my dataset
The Reduce Dimensionality Live Task is perfect for this. Select "show code" at the bottom of the task and from there you can mod...

8 days ago | 0

| accepted

Answered
3D Regression after doing PCA
You want to use the second ouput of pca (score in your code). Each column represents each principal component, where each value ...

9 days ago | 0

Answered
NeuroSolutions for MATLAB error
Check out the answers to these previous posts: https://www.mathworks.com/matlabcentral/answers/101304-why-do-i-get-the-error-me...

9 days ago | 0

Answered
Why does comparison tool show modification when the values look the same?
It could be a data type issue. Double check what data type Python is saving as (MATLAB defaults to double precision). Here is an...

9 days ago | 0

Answered
How to save all state in my App Designer app?
Here's a basic overview of how you might go about that https://www.mathworks.com/matlabcentral/answers/523768-how-to-save-restor...

9 days ago | 0

Answered
delay on user input
You can use uiwait with the "timeout" argument.

10 days ago | 0

| accepted

Answered
How do to fix this invalid data type error?
Either a, b, BPF1, or Xfdm is not a numeric or logical data type. You can verify this by using isnumeric and islogical.

10 days ago | 1

| accepted

Answered
How do I crop an image outside of box?
You can use imcrop

11 days ago | 0

Answered
Do predictive variables need to be standardised before applying PCA in classification learner?
Yes, it is generally recommended to standardize data before applying PCA, especially when the variables in your dataset are meas...

11 days ago | 0

| accepted

Answered
How to find delay of signal sample
I think it has to do with the fact that your original signal is just multiple permutations of a sine wave. If you closely inspec...

11 days ago | 0

Answered
"Index in position 2 exceeds array bounds." - imfindcircles
If you run this in a script, MATLAB will tell you exactly what line is yielding the error. You are trying to indexing to a posit...

11 days ago | 0

Answered
Wait for app to close before continuing script execution
To my knowledge there is currently no way to check the window status of shipped apps like Medical Image Labeler. A workaround ...

11 days ago | 1

Answered
Why different results showing for laptop and desktop
Hard to say without seeing the code itself, but my first instinct would be to check if you are calling any hardcoded paths. If t...

12 days ago | 0

Answered
Are there any up-to-date MATLAB to Python converters?
You can compile MATLAB code/functions directly to a Python Package using MATLAB Compiler. https://www.mathworks.com/help/compile...

12 days ago | 0

Answered
Ranking Strategy for Large Temperature Dataset
timetables are quite useful when working with data that is regularly spaced in time. You can index to specific time points and r...

12 days ago | 0

Answered
How to compute RMSE on training set and validation set in LSTM regression?
You'll want to look at the info object returned by trainnet.See this previous post for more info.

12 days ago | 0

Answered
How to feed labels in YOLO txt format into imageDataAugmenter?
imageDataAugmenter does not take labels as input. You would include those when you're creating your original imageDatastore. Spe...

12 days ago | 0

| accepted

Answered
clustering two columns of data
You want to use the linkage and dendrogram functions.

12 days ago | 0

Answered
How to cluster 1-d data using KDE
Something like this? % Generate sample data with two clusters data = [randn(100,1); 5+randn(100,1)]; % 100 points around 0 and...

12 days ago | 1

| accepted

Answered
Question on creating dynamic matrix variables
May be worth looking into structures instead of matrices. https://www.mathworks.com/help/matlab/matlab_prog/generate-field-names...

15 days ago | 0

Answered
How do I automatically show a console window when launching a compiled app on a Mac?
Have you tried just calling system("") in the startup function of you app?

23 days ago | 0

Answered
standardizeMissing not converting selected values to NaN
It's because your values are integers not doubles. There is no room for a NaN value when using integers. The documentation for t...

23 days ago | 0

| accepted

Answered
'embeddingLayer' is used in Train Conditional Generative Adversarial Network (CGAN).
Did you run the following command to open the example? openExample('nnet/TrainConditionalGenerativeAdversarialNetworkCGANExampl...

25 days ago | 1

| accepted

Answered
Multiline display with mlreport gen
I think the answers to these questions are what you're looking for. https://www.mathworks.com/matlabcentral/answers/1863073-mat...

25 days ago | 0

Answered
How to give call back function in app design using MATLAB.
To add a callback to a component, open the app in design view. Right-click the component you want to add a callback for and sele...

25 days ago | 0

Answered
How to make sizes of 3D subplots bigger?
tiledlayout will give you greater control over the spacing of the plots than subplot.

25 days ago | 0

Answered
Facing Error while generating presentation through Matlab App designer
Did you run makeDOMCompilable?

25 days ago | 0

Answered
use of data store for waveform input in deep learning
I believe what you're looking for is a signalDatastore. Here's an example on using signal datatstores and general documentation...

25 days ago | 0

Answered
Image segmentation of these pellets
Have you tried a different colorspace? I converted the image to HSV and used the Color Thresholder app. Just with that I was abl...

26 days ago | 0

Load more