photo

Chirag Gupta

Last seen: 4 mois il y a Actif depuis 2011

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
164 Réponses

File Exchange

2 Fichiers

Cody

0 Problèmes
10 Solutions

RANG
247
of 300 352

RÉPUTATION
382

CONTRIBUTIONS
0 Questions
164 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
65

RANG
2 499 of 20 928

RÉPUTATION
695

CLASSEMENT MOYEN
4.70

CONTRIBUTIONS
2 Fichiers

TÉLÉCHARGEMENTS
9

ALL TIME TÉLÉCHARGEMENTS
6460

RANG
38 385
of 168 212

CONTRIBUTIONS
0 Problèmes
10 Solutions

SCORE
110

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 3
  • First Submission
  • 6 Month Streak
  • Knowledgeable Level 4
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
how to create 3 link robot using robotic toolbox
Try this: L1 = link([0 1 0 0],'standard') L2 = link([0 1 0 0],'standard') L3 = link([0 1 0 0],'standard') r = robo...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Using Boost Libraries with Mex function in MATLAB
Another solution might be to create your mex files directly from Visual Studio:

plus de 10 ans il y a | 0

Réponse apportée
Using matlabinit in Excel VBA
Check this: <http://www.mathworks.com/help/exlink/functionlist.html Working with Spreadsheet and VBA> You just need to add...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
storing arduino serial data to cell array
Have you taken a look at the Serial_Monitor? Might solve your issue http://www.mathworks.com/matlabcentral/fileexchange/45839-s...

environ 11 ans il y a | 1

Réponse apportée
Running a specific m-file/fig from excel
There are lots of options: You should look at MATLAB as a COM Automation Server. You should be able to start MATLAB from V...

plus de 11 ans il y a | 1

Réponse apportée
How can I communicate with an Arduino MegaADK using MATLAB R2007b?
If the above package doesn't work then: have you tried using a serial object. Typically arduino connected to the PC with USB ...

environ 13 ans il y a | 0

Réponse apportée
deploytool
You need to have a java SDK installed. If you already have a JAVA SDK installed, you should check the JAVA_HOME environment vari...

plus de 13 ans il y a | 0

Réponse apportée
bluetooth communication in matlab
bluetooth is supported in the Instrument Control Toolbox form R2011b. You can also try and connect it as a serial port (if the...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
standalone executable opens with warning for missing directory paths
This is possible because the matlabrc file on the machine where the executable was compiled might have modified settings (or a c...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
How to control/interface Windows media player with MATLAB?
You can take a look at the Windows Media Player Object Model here: <http://msdn.microsoft.com/en-us/library/windows/desktop/dd5...

presque 14 ans il y a | 1

Réponse apportée
USB interfere to MATLAB
With MATLAB R2011b, using the Instrument Control Toolbox, you can directly interface with bluetooth devices [SPP profile] (like ...

presque 14 ans il y a | 0

Réponse apportée
speech signal from Microphone USB
Try this: <http://www.mathworks.com/help/techdoc/ref/audiorecorder.html>. If you want to record analog data from your soundcard...

presque 14 ans il y a | 0

Réponse apportée
how to use SQLServer/JDBC from compiled Matlab code?
Try and use the javaaddpath command in the code to set up the javapath instead of classpath.txt

presque 14 ans il y a | 0

Réponse apportée
Triggering with a DAQ board--how do I pull data out of startBackground and tell MATLAB to take a few more samples?
This may be of help! I proposed 3 different methods, chose whats best in your case: <http://www.mathworks.com/matlabcentral/ans...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
Calling an object's method that changes its property not doing what I want.
This would stem from the difference between Value classes and handle classes. Its explained here: <http://www.mathworks.com/he...

presque 14 ans il y a | 1

| A accepté

Réponse apportée
Returning status of operation using mex
mex functions can return outputs: void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]); The n...

presque 14 ans il y a | 0

Réponse apportée
how to set preference to arduino ide, what file exactly is it?
Dan, I would suggest using arduino-023 or arduino-022. Arduino-1.0 has significant changes as compared to the previous versions ...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
how to set preference to arduino ide, what file exactly is it?
The release before arduino-1.0 was arduino-023 (and before that was arduino-022) Just set the arduino root folder (under whic...

presque 14 ans il y a | 0

Réponse apportée
Analog Outputs stops (without reason) ?!
Looking at the documentation, it states that all the data must be queued using putdata before starting the analogoutput object. ...

presque 14 ans il y a | 0

Réponse apportée
Analog Outputs stops (without reason) ?!
Can you post bit of the code? Also are you using the new Session based interface (R2011b) or the legacy interface ? Session B...

presque 14 ans il y a | 0

Réponse apportée
Graphical Outputs HELP
Try doc uitable: simple example: a = magic(10); t = uitable('Data',[a(:,1) a(:,2)],'ColumnName',{'X','Y'},'RowName',...

environ 14 ans il y a | 0

Réponse apportée
Standalone executable GUI calling Simulink
You would need to install the MCR on machines without MATLAB (MCR: Matlab Runtime) The MCR is avalable with the MATLAB Compi...

environ 14 ans il y a | 0

Réponse apportée
DAQ output speed maximum
You should be able to increase the sample rate of your AO to reduce the steps. set(ao_Ref,'SampleRate',5000); The defaul...

environ 14 ans il y a | 0

Réponse apportée
How to write several results in the same sheet of a Xls file ?
You can do this accurately, if you know the dimensions of the results. Otherwise, if you have good idea for maximum size of t...

environ 14 ans il y a | 0

Réponse apportée
Convert C struct to matlab struct
Depends on the medium? How are you communicating with C in MATLAB? a) Are you using MEX files? In that case you could create...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Multiple channel Data Acquistion - NI USB-6251 & BNC-2090
Greg from your code, it seems that: ai = analoginput ('nidaq','Dev1'); chan = addchannel (ai,0:1); %Set DAQ Parameters (p...

environ 14 ans il y a | 2

Réponse apportée
function defintion
You cannot define MATLAB functions in the middle of a script. function myscript clear; Rd=load('A1.txt') plot(Rd); ...

environ 14 ans il y a | 0

Réponse apportée
peekdata - really latest samples? - buffer?
I believe the theory is correct. You might be able to control this using the BufferingConfig and BufferingMode properties. <h...

environ 14 ans il y a | 0

Réponse apportée
Function to display variables in MATLAB figures
Where do you want to insert this in the plot? You can insert this as a point on the existing graph using: hold on; plot(...

environ 14 ans il y a | 0

Réponse apportée
Fast Image Thresholding-will a mex file improve speed?
You can also use manual trigger mode on your videoinput object to reduce the overhead associated with getsnapshot. Check the ...

environ 14 ans il y a | 0

Charger plus