Statistics
0 Questions
30 Answers
RANK
4,456
of 298,512
REPUTATION
12
CONTRIBUTIONS
0 Questions
30 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
of 20,606
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 161,536
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
Feeds
Is there a way to copy or extract or get the initial values or default Values of input ports of a bus or simulink Model with input signal names?
Hi @Jaleel Mughal, I understand that you want to automatically retrieve signal names from a Simulink model, get the initial or ...
7 days ago | 0
PLot two cluster plot
Hi @sm m, I understand that you would like to plot two sets of data (“y1” and “y2”) as clusters on the x-axis, and instead of d...
10 days ago | 0
Find decision tree with highest validation accuracy in tree ensemble
Hi @Kai Doenges, You can find the single decision tree with the highest validation accuracy by evaluating each tree in the ense...
11 days ago | 0
Cannot find example file 'WindTurbineOpenLoop'
Hi @Rasmus, I understand you are trying to access 'WindTurbineOpenLoop' mentioned in the MATLAB documentation https://www.mathw...
11 days ago | 0
How to implement an ensemble of SVM and ANN for multiclass data in Matlab?
Hi @Supriyo Srimani, MATLAB provides built-in ensemble learning techniques such as bagging, random space and some boosting algo...
1 month ago | 0
How to plot the attached waterfall-type diagram and follow the peaks?
Hi @Arash A., The findpeaks function in MATLAB can be used to detect and highlight peaks in the curves. The below code snippe...
1 month ago | 0
Published File does not display Figure/Graph in PDF
Hi @Richard Maffei, I understand that you want to automatically publish your MATLAB script and ensure that the output image app...
1 month ago | 0
how can i divide image (grayscale) into overlapping blocks 8*8 ??
Hi @Amina BENKESSIRAT, To divide a grayscale image into overlapping 8x8 blocks in MATLAB R2024b, nested loops can be used to it...
1 month ago | 0
I am using Regression Learner App for training the Neural Network, I want to know how to choose the different activation functions for different layers?
Hi @SWAROOP H P, I understand that you want to choose different activations for different layers of neural network in Regressio...
2 months ago | 1
| accepted
I am using Regression Learner App for training the Neural Network. I want to know how to specify the batch size, select adam optimizer and also where to select loss function?
Hi @SWAROOP H P, In the Regression Learner App, when utilizing Neural Networks as the model, you have several hyperparameter op...
2 months ago | 1
| accepted
how to display text in simulink?
Hii @ahmedalkhair mostafa, I understand that you want to display words according to the output produced by a Simulink block. ...
2 months ago | 0
Extract Patient Name from Dicom Images
Hii @Neha P, The patient’s name can be extracted from DICOM image using dicominfo function available in MATLAB. You can refer...
2 months ago | 0
How to set weights in fitcsvm?
Hi @Tom Gerard, To handle class imbalance in the “fitcsvm” function using the “Weights” parameter of the “BoxConstraint”, you...
2 months ago | 0
bwconncomp and conn=3-by-3 constant marix not working for C/C++ Code Generation, despite using R2023b
Hi @Robin, I tried generating C code using the connectivity matrix [0 1 0;0 1 0;0 1 0], and got the same error in both MATLAB R...
3 months ago | 0
Translational Hardstop and Accumulator Block
Hi @Andy Jiang, You can navigate as described below to insert these blocks Accumulator block: Simulation > Library Browser > S...
3 months ago | 0
How to represent image feature in term of GMM model
Hi @Yuvarani Sadatcharam, You can use “fitgmdist” function in MATLAB to represent your extracted features using GMM. Here is a...
3 months ago | 0
How to plot ROC for multi class?
Hi @tejasvee, You are correct that ROC curves are commonly used for evaluating the performance of binary classification models....
3 months ago | 0
How does MATLAB's "trainnet" function handle network state during training?
Hi @Diana, I have used this MATLAB documentation example (https://www.mathworks.com/help/deeplearning/ug/train-network-on-image...
3 months ago | 0
How to calculate Percentage wise confusion matrix for each class??
Hi @saeeda saher, When using “confusionmat”, the output is given in terms of the number of instances. To express the results as...
3 months ago | 0
How to generate confusion matrix for multi class?
Hi @tejasvee, For plotting the confusion matrix for 5 classes, you can use “confusionchart” from MATLAB Deep Learning Toolbox (...
3 months ago | 0
3-D radiation pattern from antenna measurement
MATLAB File Exchange submission offers the "polarplot3d" function, which allows you to create 3D radiation patterns using polar ...
3 months ago | 0
Appdesigner TextArea display warning message from function
Hi @Tik Tak, You can use the “evalc” function in MATLAB to capture all output that would typically be displayed in the command ...
3 months ago | 0
i want to create a cascadeforwardnet Neural Networks in MATLAB? how can i create?
Hello @sehrish shah, You can do this by using “cascadeforwadnet” function available in the “Deep Learning Toolbox” in MATLAB R...
3 months ago | 0
difference between traingdm in patternnet vs sgdm in cnn
Hi @San May, “traingdm” is a training function used in “patternnet” networks. Since “patternnet” supports only batch processing ...
3 months ago | 0
Batch or online training?
Hello @Lorena Andrade, the training type used in “patternnet” network is “batch”. This means that the network weights and biases...
3 months ago | 0
setting WindowButtonMotionFcn to several subplots. Later command set(gcf, 'WindowButtonMotionFcn'...) work only for last suplot
Hi @Yurii Iotov, I get that you would like to know if it is feasible to have distinct “WindowButtonMotionFcn” callbacks for each...
3 months ago | 0
how can i hover over my uiaxes to get real time zoomed-in image in another uiaxes on matlab appdesigner?
Hi @Baibhav, I understand that you are trying to implement a feature that allows you to hover over “uiaxes” that has been create...
3 months ago | 0
How to use Svd
Hi, I understand that you are trying to apply “svd” to an image which is producing an error. As SVD works on only 2D matrices,...
3 months ago | 0
Can't get 'ValueChangedFcn' callback to work for 'uidatepicker '
Hi, I understand that you want to add a date picker to the main app window and trigger an action whenever the date is changed us...
3 months ago | 0
How can I change the visible limits of uidatepicker?
Hi, I get that you want the dropdown to show the years from “1960” to “2040”, but it’s showing a range of only 40 years. I am ab...
3 months ago | 0