![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/12904313_1578417770530.jpg)
Muhammad Usama Sharaf SAAFI
Followers: 0 Following: 0
Statistics
RANK
2,879
of 297,010
REPUTATION
20
CONTRIBUTIONS
0 Questions
11 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
of 20,418
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
Is there a danger in renaming a Matlab install folder
You should rename this folder (recomended). It may cause some issues when you will use default example given my MATLAB . However...
5 years ago | 0
Not able to use previous element in matrix inside for loop
Declare R_p in above code. You are not showng complete code here.
5 years ago | 0
How to change the colour or text or delete some text of the default graph in findpeaks function?
use title(''); command to change text after findpeak() function, use whitebg('blue'); to change color.
5 years ago | 0
Unrecognized function or variable
https://www.mathworks.com/help/matlab/ref/regexp.html This link will help you. "options" should be a string veriable i your ...
5 years ago | 0
| accepted
How to deploy machine learning model?
You can save your Trained model from workspace by right click and choose save. Using load('trainedModel.mat'); you can load...
5 years ago | 0
How I use bounding box for multiple objects?
Try to use "Image Labler app". It will solve your issue. you can choose your multiple ROI from an image and my exporting it will...
5 years ago | 0
How to predict future data after training svm ?
[imagepred, probabilities] = predict(trainedModel.ClassificationSVM,imagefeatures3); use this command for prediction.
5 years ago | 1
| accepted
Rectify the error in imread
Your image file must me in MATLAB serach path. You should keep your image file in current folder. If you are confused you should...
5 years ago | 1
Can I stop MATLAB when it's being busy?
You should press ctrl+c in such scenarios. MATLAB will stop all excecution.
5 years ago | 0
Error using for loop
In first iteration , value of i and k is 1 so A(i-k) means A(0) and in matlab "0" can not be index of any array so this cause er...
5 years ago | 0
how to fulfill GAN (Generative Adversarial Networks ) or DCGAN in matlab?
Only MATLAB 2019b has demo example of GAN.Example code also works on GPU but you should have CUDA 10.1 driver installed in your ...
5 years ago | 0
| accepted