Manan Mishra
MathWorks
Followers: 0 Following: 0
I work at MathWorks
Statistiques
0 Questions
28 Réponses
RANG
1 262
of 296 150
RÉPUTATION
56
CONTRIBUTIONS
0 Questions
28 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
6
RANG
of 20 349
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 155 481
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
simulink stateflow entry, during, and exit action
Yes, in this condition the exit action will be executed. Exit actions are executed when a state is active and a *transition ...
plus de 6 ans il y a | 0
| A accepté
if elseif end error
I was not able to reproduce the same error on my end. However the issue could be because the output |theta| is not being assigne...
plus de 6 ans il y a | 0
How to solve equations having product variables
You can use the function |fsolve| to solve a system of non-linear equations. Please refer the following link to know more abo...
plus de 6 ans il y a | 0
How to add differentiate a point on my graph using a for loop
A few points to note: 1. "for k = length(CG_X)" would assign only a single value of 10 to 'k'. You need 'k' to take all value...
plus de 6 ans il y a | 0
| A accepté
MEX setup does not recognize an installation of Microsoft Visual Studio 2017
Please find the list of compilers supported with MATLAB R2012b in the following link: <https://www.mathworks.com/content/dam/...
plus de 6 ans il y a | 0
Why there is no IPC block on my Simulink Library Browser ?
Please ensure that you are using the latest release of MATLAB as the IPC Blocks were introduced in MATLAB R2018a. Refer the fol...
plus de 6 ans il y a | 0
| A accepté
Help With Converting C++ Code To MATLAB
I would like to point out a difference between the code you shared here and in the 'codepad' link. Here, you specified your a...
plus de 6 ans il y a | 0
Polyspace (R2016b) Win64: I get exception path(path) when I try to run a analysis from commandline
In Polyspace releases prior to R2017b, the "-prog" flag in "polyspace-configure" command expects only the name of your Polyspace...
presque 7 ans il y a | 0
| A accepté
How can I write a Matlab code for a flowchart, under the if and then statement ?
Here are a couple of workflows you can follow: 1. You can write MATLAB code for your flowchart using "if/elseif/else" stateme...
presque 7 ans il y a | 0
i HAVE MATLAB INSTALLED ON MY UNIVERSITY LAPTOB: WHAT DO I HAVE TO DO TO HAVE IT ALSO INSTALLED ON MY HOME PC?
Error 1616 indicates that there are no additional activations available on the license in question. To activate MATLAB using thi...
presque 7 ans il y a | 0
while converting frames into video i was getting some errors . My code is actually a tutorial from matlab. i am getting some difficulties in understanding how to give the input of my frames in the code.
Here are a few links to help you out: - A post from MATLAB Answers: <https://www.mathworks.com/matlabcentral/answers/15392...
presque 7 ans il y a | 0
save as .fig
The error you are getting could be due to a shadowing issue. You can try the following steps and see if this resolves the is...
presque 7 ans il y a | 0
i am having matrix of i rows by 3 columns ,now i want to multiple only i rows of 1 columns with 5 upto 100th row after the 100th row ,values has to be as it is.
Let's assume that you want to multiply the first 'x' rows of the first column with a scalar 'n' and update the values in 'A'. ...
presque 7 ans il y a | 0
| A accepté
Is it possible to export a graph from matlab to excel?
You can use the "MLGetFigure" function to import current MATLAB figure into Microsoft Excel worksheet. For more information a...
presque 7 ans il y a | 0
Problem with matlab compiler after upgrading to R2017b. matlabshared.supportpkg.internal.getSupportPackageRootNoCreate
The error which you are receiving could be due an incorrect MATLABPATH setting, which is likely the result of working with a pat...
presque 7 ans il y a | 2
How to tell composed functions apart?
You can't see the fourth plot because the plots for 'c' and 'd' are overlapping. You can run the "fplot" commands one by one and...
presque 7 ans il y a | 0
Two Matlab Function Blocks generate the same random number
You can use different seeds in your MATLAB function blocks to get different random numbers as output. Look at the following docu...
presque 7 ans il y a | 0
vpasolve gives different answers for the same equation
The difference in results is because of the values you have used in place of those variables. The default output display for...
presque 7 ans il y a | 1
| A accepté
How can I reduce the size of standalone application (web) installer?
The MATLAB Compiler is designed to allow a large portion of MATLAB's features to be compiled. In order to achieve this, the run-...
presque 7 ans il y a | 0
How can save the output of the eval function
You should consider an alternative approach to this problem. Creating variables dynamically is a common and frequent source of e...
presque 7 ans il y a | 1
| A accepté
Issue with R2017b when open files
This issue could be due to the 'pathdef.m' file or the custom 'startup.m' file (if exists) used by MATLAB. The default paths of ...
presque 7 ans il y a | 2
Frequency Sweep using Parallel Toolbox
You can refer the following documentation link for an example on how to speed up antenna and array analysis using Parallel Compu...
presque 7 ans il y a | 0
| A accepté
How can I run examples I found on the MathWorks site?
This error seems to be caused due to some issue with the following folder: "(matlabroot)\examples\ident_featured" I was ab...
presque 7 ans il y a | 0
How to subtract mean along rows?
One way to do this would be following: When you operate on each individual row for finding groups using "findgroups" and mean...
presque 7 ans il y a | 0
| A accepté
How do I link my data with the training and validation set indices I have created using 'dividerand' function?
You can pass the vectors created by "dividerand" as index to extract training and validation sets from your dataset. For exam...
environ 7 ans il y a | 0
Simulink 6 Pulse Rectifier not working.
The output of the model is not correct even for firing angle between 0 and 90. There are two reasons why the model is not showin...
plus de 7 ans il y a | 0
i have a signal with many frequencies. how to find this frequencies and reconstruct the signal from these frequencies
I think this should work for you: ffty = fft(y); P2 = abs(ffty/length(ffty)); P1 = P2(1:ceil(length(y)/2)); P1(2:...
plus de 7 ans il y a | 0
| A accepté
Detecting overrun while running Beagle board in Simulink External mode
Currently, there is no option to detect overruns for Beagle Black board. The developers are working to include this in future re...
plus de 7 ans il y a | 0