Community Profile

photo

Muhammad Usama Sharaf SAAFI


Last seen: 대략 1년 전 2020년부터 활동

통계

All
  • Knowledgeable Level 2
  • Solver
  • First Answer

배지 보기

Content Feed

보기 기준

문제를 풀었습니다


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

대략 4년 전

문제를 풀었습니다


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

대략 4년 전

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

대략 4년 전

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

대략 4년 전

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

대략 4년 전 | 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.

대략 4년 전 | 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.

대략 4년 전 | 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 ...

대략 4년 전 | 0

| 수락됨

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

대략 4년 전 | 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...

대략 4년 전 | 0

답변 있음
How to predict future data after training svm ?
[imagepred, probabilities] = predict(trainedModel.ClassificationSVM,imagefeatures3); use this command for prediction.

대략 4년 전 | 1

| 수락됨

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

대략 4년 전 | 1

답변 있음
Can I stop MATLAB when it's being busy?
You should press ctrl+c in such scenarios. MATLAB will stop all excecution.

대략 4년 전 | 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...

대략 4년 전 | 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 ...

대략 4년 전 | 0

| 수락됨