photo

Abhishek Kumar


Active since 2019

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
13 Answers

Cody

0 Problems
40 Solutions

RANK
3,189
of 301,513

REPUTATION
18

CONTRIBUTIONS
0 Questions
13 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
2

RANK
 of 21,310

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
14,457
of 175,013

CONTRIBUTIONS
0 Problems
40 Solutions

SCORE
410

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Knowledgeable Level 2
  • Revival Level 2
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
counter with if,elseif condition
for loop=1:200 if(loop<=32) p(loop)=1; elseif(loop<=64) p(loop)=2; elseif(loop<=96) p(loop)=3; ...

7 years ago | 0

Answered
How can i convert C Code to Simulink Models ?
You can use s-functions. The link below explains with various examples on how to go about it. https://in.mathworks.com/help/...

7 years ago | 0

| accepted

Answered
How do I obtain a license file for my installation?
It is possible that your user account only has limited permissions. You can try launcing it as an administrator. If the lice...

7 years ago | 1

Answered
How to get all positive values of 'm' from the given domain of two variables?
i=1; j=1; cans=zeros(1,10); lans=zeros(1,10); for a=0.5:0.01:1 for b=0.5:0.01:1 d=15 *a^6 + 45* a^4* b^2 + 64*...

7 years ago | 0

Answered
Complex vector conversion to binary bits using quantizer
It would be easier if you could give an example of want is your input and what is your expected output. Below is an example wh...

7 years ago | 0

| accepted

Answered
read data from file and convert to a 3d array.
I am attaching the code below this works for data (3*3*3), make changes accordingly to suit your purpose. Also, If you wish to ...

7 years ago | 0

Answered
How to Overwrite Data
for i= 1:100 if B(i, 1) == 0 B(i, 1)= A(i, 1); elseif B(i, 2) == 0 B(i, 2) = A(i, 1); end end T...

7 years ago | 0

Answered
How to remove NaNs from a structure
A workaround for this would be converting the struct to matrix and then get rid of the NaNs and if you need it again convert it ...

7 years ago | 0

Answered
Decimal to binary, bit reversal of binary and binary to decimal
Hi Riddhi What is the output you are getting and what is the output that you think you should get? I tried running the same...

7 years ago | 0

Answered
publish tab missing in version R2019a
The publish tab does not show up for files with extensions other than '.m'. try running this in the command prompt >> edit asd...

7 years ago | 0

Answered
Undefined function sgn(z)
Hi Advait There is no function called 'sgn' in matlab. It seems that you wanted to use 'sign' to get the sign of the variable a...

7 years ago | 0

Answered
Matlab Coder, C-function return type
Hi Christian Functions in programming languages like 'c' and 'c++' are of a certain type, whether it be int, double, string etc...

7 years ago | 0

| accepted

Answered
What does this particular code do?
Hi Petros It seems that the code provided by you is trying to replicate the sound produced after plucking the 'A' string of a g...

7 years ago | 1