![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/16835811_1573567945794_DEF.jpg)
dipak nigam
Followers: 0 Following: 0
Statistics
0 Questions
8 Answers
RANK
3.644
of 297.046
REPUTATION
14
CONTRIBUTIONS
0 Questions
8 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
3
RANK
of 20.422
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 157.776
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
How to save the hold on image
Hey, I think you need to use the 'imwrite' command instead of 'imwrit'. If it is a typo, you can refer to this answer to save ...
meer dan 4 jaar ago | 0
how to have indication of matlab function stopped
As per my understanding, you want to run another function if your present function raises an 'error' or 'fails'. You can put the...
meer dan 4 jaar ago | 0
extracting values above 0 in an array and putting them in a new array
Hey, you can use the below piece of code for your desired functionality. a(a<=0)=inf; minArray = min(a); If you want to keep ...
meer dan 4 jaar ago | 2
| accepted
Error while assigning a variable
You can refer to this answer to understand the above behaviour. https://www.mathworks.com/matlabcentral/answers/357800-how-to-...
meer dan 4 jaar ago | 0
submitWithConfiguration not working in matlab online R2020a.
https://www.mathworks.com/matlabcentral/answers/481537-submitwithconfiguration-not-working-in-matlab-r2019b Try referring to th...
meer dan 4 jaar ago | 0
Two different ways of using iterations
load tal v_stor=[]; v_liten=[]; v_mellan=[]; for i=1:length(V) if V(i)>=10 v_stor = [v_stor V(i)]; elseif...
meer dan 4 jaar ago | 1
| accepted
What are the possible invalid expressions in this equation?
Some suggestions - 1) MATLAB doesn't have e for exponentiation. You can use exp(arr) to get a vector with exponents of all ele...
meer dan 4 jaar ago | 0
Values keep repeating in a loop...really need your help..there is no error in my code
You are not updating the value of the fitness function, 'f', inside the loop. From my understanding, you want to fill 1000000 r...
meer dan 4 jaar ago | 0