Réponse apportée
Showing x-axis & y-axis
After plotting that function do: get(gca) See the last property, visible, if it's off turn it on axis on I don'...

environ 15 ans il y a | 1

Réponse apportée
Speaker recognition Simulink Model, help needed
A GUI would be great for that, you can control simulink models with it, for example have one simulink model (mdl file) to record...

environ 15 ans il y a | 1

| A accepté

Réponse apportée
[DISCONTINUED] Wish-list for MATLAB Answer sections.
*Wish-list for MATLAB's Questions* # Proper code formatting # Search first and ask questions later # Post all needed variables ...

environ 15 ans il y a | 1

Réponse apportée
How to specific random numbers rang?
randi([1 9],m,n)

environ 15 ans il y a | 0

| A accepté

Réponse apportée
how to access timing parameters in simulink
For the detection look under the blocks Logic And Bit Operations The time can be acquired with the Clock block You want to...

environ 15 ans il y a | 0

Réponse apportée
Projecting a vector to another vector
A=[-10,10,0]; B=[0,0,1]; %calculation of the projection of A into B C=(sum(A.*B)/(norm(B)^2))*B; %versors of each vect...

environ 15 ans il y a | 2

Réponse apportée
Matrix Multiplication (multiply every row of a matrix to different values)
Just a little interesting thing I've done syms a b c A=[1, 2, 3; 4, 5, 6; 7, 8, 9] B=[a;b;c];C=[]; for id=1:nume...

environ 15 ans il y a | 0

Réponse apportée
Need to covert matlab block to neural network block. so that i need matlab coding.
Use min and max from matlab, you can even use just one of them if you do the product of the argument by -1.

environ 15 ans il y a | 0

| A accepté

Réponse apportée
GUIDE: build an array of pixel coordinates by pressing button or carriage return
<http://www.mathworks.com/matlabcentral/answers/2136-selecting-a-row-of-image-pixels-as-roi-from-gui I already gave you the code...

environ 15 ans il y a | 0

| A accepté

Réponse apportée
Undefined variable problem in a simple model for non-linear oscillator
"When I type in the following, I get an error saying "undefined function or variable 't'" %[t,v]=ode45('F',[0,15],[0,0]) p...

environ 15 ans il y a | 1

| A accepté

Réponse apportée
Select a point in Scope Graph
For what I can see you can't do it directly in the scope (matlab 2008b), some options: #1 Export the signals to matlab and anal...

environ 15 ans il y a | 1

| A accepté

Réponse apportée
How to display a zoomed image in GUIDE
The documentation for the zoom function is very good, nice examples and you can take advantage of <http://blogs.mathworks.com/de...

environ 15 ans il y a | 1

Réponse apportée
Plotting Sierpinski's triangle
That is homework and nothing seems to be done so far, I won't do your homework, I will just point out what you need to know (wit...

environ 15 ans il y a | 1

Réponse apportée
From workspace in realtime
Try this with the Matlab Fcn and a Display (or scope) Matlab Fcn (evalin('caller','MyVar'))-------->Display or just Matla...

environ 15 ans il y a | 2

| A accepté

Réponse apportée
[DISCONTINUED] Wish-list for MATLAB Answer sections.
Too many people are using the Answers system like they use a search engine (google,bing,etc), I'm tired of trying to find out ho...

environ 15 ans il y a | 3

Réponse apportée
Huffman coding and decoding for image(JPEG, BMP)
<http://www.mathworks.com/matlabcentral/fileexchange/26384-ppt-for-chapter-9-of-matlabsimulink-for-digital-communication There a...

environ 15 ans il y a | 0

| A accepté

Réponse apportée
A simulink block function for definite integral
You can do the pulse trick fun-----------------------------I Product -----> Integrator step...

environ 15 ans il y a | 0

Réponse apportée
I do not know how to get my loop to be condensed nor does my plot for function y will display. Here is my code
You don't need those for loops and those break, just delete them and put those math expressions after the user inputs. (There a...

environ 15 ans il y a | 0

| A accepté

Réponse apportée
plot while using for loops
Do you want to plot all in the same axes? clc;clf;hold all mean_v=[]; std_d=[]; inter=[]; A=[ 30,31,12, 9 17,12...

environ 15 ans il y a | 0

Réponse apportée
GUIDE: preview zoomed image based on mouse over of fullsize image
http://www.mathworks.com/matlabcentral/fileexchange/2902

environ 15 ans il y a | 1

| A accepté

Réponse apportée
Selecting a row of image pixels as ROI from GUI
Make a GUI with pushbutton and axis Display the image on that axis The button callback will be something like this [x,y,but...

environ 15 ans il y a | 0

| A accepté

Réponse apportée
Combine Matlab and Java
I don't have experience on that but do you know about http://undocumentedmatlab.com ? they got many examples in there.

environ 15 ans il y a | 0

Réponse apportée
Simulink and .mat file
The question has a bunch of errors and there isn't reliable information about what error occurs so I will try to guess: 1. If y...

environ 15 ans il y a | 0

Réponse apportée
How can I group data and plot them with unique markers for each group?
Please share the dataset.mat so I can try to make a GUI for what you want, I love a good chalenge :)

environ 15 ans il y a | 0

Réponse apportée
Tabbing between opened Editor tabs
I was curious about the question because I always have many open mfiles at the same time in matlab 2008b and the tab navigation ...

environ 15 ans il y a | 1

A soumis


MFileSelector
Shows a list of all m files open in the editor and allows one to be selected

environ 15 ans il y a | 1 téléchargement |

4.0 / 5
Thumbnail

Réponse apportée
How to execute two MATLAB scripts simultaneously
I made this code yesterday, it displays the memory used by matlab in real time, it updates the plot every half second, in your c...

environ 15 ans il y a | 0

Réponse apportée
How to model an electronic component (ex an op-amp). Can I add parameters to existing (built in)blocks??
The device can be made with simple mathematical expression, for example if you want to get Vout from a simple ideal inverting am...

environ 15 ans il y a | 0

Réponse apportée
How to create a popup mesage initially before program running?
Here's one way to do it, popupgui is the name of the GUI I used to create the code, this was created with the help of GUIDE, it ...

environ 15 ans il y a | 0

| A accepté

Réponse apportée
i want to read the serial data using for loop... and want to get a real time data plot
Here's a code that I made that plots the memory used by matlab in real time, I used some tips from the experts ;) adapt it to yo...

environ 15 ans il y a | 0

Charger plus