Réponse apportée
Matlab and Windows Crash after plotting data, how to avoid this?
Probably you are trying to plot data points individually rather than as a matrix. Refer below link for details: http://www...

plus de 13 ans il y a | 0

Réponse apportée
How can I get the variable from inside of the for loop and use it /display it after for loop?
Declare that variable as global, so that matlab won't delete it.

plus de 13 ans il y a | 0

Réponse apportée
How do I plot a feather plot with arrow with the following data? Thanks.
You can use 'feather' function. Refer link below: http://dali.feld.cvut.cz/ucebna/matlab/techdoc/ref/feather.html Hope ...

plus de 13 ans il y a | 1

Réponse apportée
How to run multiple m files one after another
I suggest call all these files through a single master file. And execute master file from command line.

plus de 13 ans il y a | 1

| A accepté

Réponse apportée
Need help how to correct following error...! Urgent
As Matt suggested please correct your tags. Refer below link to help yourself: http://www.mathworks.in/matlabcentral/about/an...

plus de 13 ans il y a | 0

Réponse apportée
how to create a software defined radio?
Check the example at below link: http://www.codeforge.com/article/79089 Hope it helps!!!

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Difference between fprintf and fwrite?
fprintf blocks the command line to execute other commands while the data is getting transferred while fwrite doesn't.

plus de 13 ans il y a | 1

Réponse apportée
How to take user input from a radio button.
If overlapping radio buttons is your problem, then: uicontrol('Style','Radio', 'Parent',hBtnGrp, 'HandleVisibility','off', ...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
how to add Pulse Generator(triggered) to Embedded function
Refer below links for function generators as Embedded Function: http://www.mathworks.com/matlabcentral/fileexchange/30710-pul...

plus de 13 ans il y a | 1

Réponse apportée
Loading mdl file from simulink examples
First check whether simpowersystems toolbox is installed on your system using 'ver' command. If yes then search for this mode...

plus de 13 ans il y a | 1

| A accepté

Réponse apportée
problem in connect not gate in simulink
Use 'ver' command to check whether Simelectronics toolbox is installed on your system

plus de 13 ans il y a | 0

Réponse apportée
how to import data into matlab
If this data is in .csv format then you can 'csvread' function in matlab. Refer this link: http://www.mathworks.in/help/ma...

plus de 13 ans il y a | 0

Réponse apportée
problem in connect not gate in simulink
Probably you are using CMOS NOT gate from Simelectronics components library and you do not have that toolbox on your system. ...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
What is the meaning of '* in matlab???
It means transpose & multiply. But I think functionality varies across the new & old versions of matlab. Refer link below ...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
plot point at angle
You can use plot3 command

plus de 13 ans il y a | 0

Réponse apportée
Simultaneous equations double answer
Refer links below: http://www.mathworks.com/matlabcentral/newsreader/view_thread/322341 http://www.mathworks.com/matlabcen...

plus de 13 ans il y a | 0

Réponse apportée
Plotting three different datasets using plot3 function...how can I plot them each in a different color?
You can use 'axes colororder' property. Refer below links for details: http://www.mathworks.in/help/matlab/creating_plots/...

plus de 13 ans il y a | 0

Réponse apportée
How to simulate a vehicle (car/bike) horn audio pattern on matlab?
I dont know how helpful it will be, but you can refer below link: http://www.ee.columbia.edu/~dpwe/resources/matlab/ Hope ...

plus de 13 ans il y a | 0

Réponse apportée
How to develop a Shunt capacitor bank
SimRF provides a component library and simulation engine for designing RF systems Refer below link shunt capacitors modelling...

plus de 13 ans il y a | 0

Réponse apportée
Help in Identifying Simulink Block
Going by the characteristics plotted in figure, I think it is a 'Hystresis' block. If you are working electrical domain, then...

plus de 13 ans il y a | 0

Réponse apportée
how to find maximum or minimum element in a matrix?
you can use min() & max() functions

plus de 13 ans il y a | 0

Réponse apportée
Complex Schur decomposition in C++
You can use matlab function in your C++ program. Refer link below for guidance: http://www.codeproject.com/Articles/2895/A-cl...

plus de 13 ans il y a | 0

Réponse apportée
Separate strings w.r.t to semicolon
str = 'a;b;c;d;f;e;g;t;y;s'; Out = strread(str,'%s','delimiter',';'); Hope it helps!!!

plus de 13 ans il y a | 0

Réponse apportée
Why does this loop create a horizontal array instead of a vertical array?
Probably you have preallocated array df as maybe zeros(x,1). It should be: df = zeros(1,x); x is number of elements in ...

plus de 13 ans il y a | 0

Réponse apportée
S function builder for array of bus as output
Refer link below: http://blogs.mathworks.com/seth/2009/04/17/s-functions-bus-signals-and-missing-documentation/ And refer ...

plus de 13 ans il y a | 1

| A accepté

Réponse apportée
I want to know that whether the pushbutton has the functions about it can call a functions when I still pressing it ,and when I loosen it ,it will call another functions
You can use buttondown property, refer details below: http://www.mathworks.in/help/matlab/ref/uicontrol_props.html#bqxoije ...

plus de 13 ans il y a | 0

Réponse apportée
How can i plot graph in a real time using DT9837A
Probably you changed the default frequency of the clock.

plus de 13 ans il y a | 0

Réponse apportée
Matlab command to convert MP4 to AVI and viceversa
You can use FFmpeg tool. Just issue the execution commands through Matlab & read the output in matlab. Hope it helps!!!

plus de 13 ans il y a | 0

Réponse apportée
Setting weight and bias values in custom neural network
You can use 'setwb' or 'separatewb' command. Refer link below: http://www.mathworks.in/help/nnet/ref/setwb.html Hope it he...

plus de 13 ans il y a | 0

Réponse apportée
Calling MFC VC++ code from MATLAB via Mex funciton
It is possible to call MFC C++ program in matlab, refer the link below for details: http://www.mathworks.com/matlabcentral/fi...

plus de 13 ans il y a | 0

Charger plus