Community Profile

photo

dipak nigam


Last seen: mehr als 3 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Statistiken

  • Knowledgeable Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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 ...

fast 4 Jahre vor | 0

Beantwortet
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...

fast 4 Jahre vor | 0

Beantwortet
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 ...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
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-...

fast 4 Jahre vor | 0

Beantwortet
submitWithConfiguration not working in matlab online R2020a.
https://www.mathworks.com/matlabcentral/answers/481537-submitwithconfiguration-not-working-in-matlab-r2019b Try referring to th...

fast 4 Jahre vor | 0

Beantwortet
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...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
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...

fast 4 Jahre vor | 0

Beantwortet
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...

fast 4 Jahre vor | 0