Answered
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...

15 years ago | 1

| accepted

Answered
[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 ...

15 years ago | 1

Answered
How to specific random numbers rang?
randi([1 9],m,n)

15 years ago | 0

| accepted

Answered
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...

15 years ago | 0

Answered
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...

15 years ago | 2

Answered
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...

15 years ago | 0

Answered
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.

15 years ago | 0

| accepted

Answered
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...

15 years ago | 0

| accepted

Answered
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...

15 years ago | 1

| accepted

Answered
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...

15 years ago | 1

| accepted

Answered
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...

15 years ago | 1

Answered
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...

15 years ago | 1

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

15 years ago | 2

| accepted

Answered
[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...

15 years ago | 3

Answered
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...

15 years ago | 0

| accepted

Answered
A simulink block function for definite integral
You can do the pulse trick fun-----------------------------I Product -----> Integrator step...

15 years ago | 0

Answered
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...

15 years ago | 0

| accepted

Answered
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...

15 years ago | 0

Answered
GUIDE: preview zoomed image based on mouse over of fullsize image
http://www.mathworks.com/matlabcentral/fileexchange/2902

15 years ago | 1

| accepted

Answered
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...

15 years ago | 0

| accepted

Answered
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.

15 years ago | 0

Answered
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...

15 years ago | 0

Answered
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 :)

15 years ago | 0

Answered
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 ...

15 years ago | 1

Submitted


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

15 years ago | 1 download |

4.0 / 5
Thumbnail

Answered
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...

15 years ago | 0

Answered
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...

15 years ago | 0

Answered
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 ...

15 years ago | 0

| accepted

Answered
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...

15 years ago | 0

Answered
Drawing and animation in Matlab
function drawpj fig=figure; init set(fig,'CloseRequestFcn',@my_closefcn) butt=uicontrol('Style','pushbutto...

15 years ago | 1

Load more