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

más de 15 años hace | 1

| aceptada

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

más de 15 años hace | 1

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

más de 15 años hace | 0

| aceptada

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

más de 15 años hace | 0

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

más de 15 años hace | 2

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

más de 15 años hace | 0

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

más de 15 años hace | 0

| aceptada

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

más de 15 años hace | 0

| aceptada

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

más de 15 años hace | 1

| aceptada

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

más de 15 años hace | 1

| aceptada

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

más de 15 años hace | 1

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

más de 15 años hace | 1

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

más de 15 años hace | 2

| aceptada

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

más de 15 años hace | 3

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

más de 15 años hace | 0

| aceptada

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

más de 15 años hace | 0

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

más de 15 años hace | 0

| aceptada

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

más de 15 años hace | 0

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

más de 15 años hace | 1

| aceptada

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

más de 15 años hace | 0

| aceptada

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

más de 15 años hace | 0

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

más de 15 años hace | 0

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

más de 15 años hace | 0

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

más de 15 años hace | 1

Enviada


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

más de 15 años hace | 1 descarga |

4.0 / 5
Thumbnail

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

más de 15 años hace | 0

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

más de 15 años hace | 0

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

más de 15 años hace | 0

| aceptada

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

más de 15 años hace | 0

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

más de 15 años hace | 1

Cargar más