photo

Taylor

MathWorks

Last seen: Today 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

통계

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

배지 보기

Feeds

보기 기준

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

8일 전 | 1

답변 있음
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...

11일 전 | 0

| 수락됨

답변 있음
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 ...

12일 전 | 0

답변 있음
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...

12일 전 | 0

답변 있음
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...

12일 전 | 0

답변 있음
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...

12일 전 | 0

답변 있음
delay on user input
You can use uiwait with the "timeout" argument.

13일 전 | 0

| 수락됨

답변 있음
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.

13일 전 | 1

| 수락됨

답변 있음
How do I crop an image outside of box?
You can use imcrop

14일 전 | 0

답변 있음
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...

14일 전 | 0

| 수락됨

답변 있음
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...

14일 전 | 0

답변 있음
"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...

14일 전 | 0

답변 있음
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 ...

14일 전 | 1

답변 있음
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...

15일 전 | 0

답변 있음
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...

15일 전 | 0

답변 있음
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...

15일 전 | 0

답변 있음
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.

15일 전 | 0

답변 있음
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...

15일 전 | 0

| 수락됨

답변 있음
clustering two columns of data
You want to use the linkage and dendrogram functions.

15일 전 | 0

답변 있음
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...

15일 전 | 1

| 수락됨

답변 있음
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...

18일 전 | 0

답변 있음
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?

26일 전 | 0

답변 있음
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...

26일 전 | 0

| 수락됨

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

28일 전 | 1

| 수락됨

답변 있음
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...

28일 전 | 0

답변 있음
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...

28일 전 | 0

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

28일 전 | 0

답변 있음
Facing Error while generating presentation through Matlab App designer
Did you run makeDOMCompilable?

28일 전 | 0

| 수락됨

답변 있음
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...

28일 전 | 0

답변 있음
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...

29일 전 | 0

더 보기