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

mehr als 15 Jahre vor | 1

| akzeptiert

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

mehr als 15 Jahre vor | 1

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 2

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 1

| akzeptiert

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

mehr als 15 Jahre vor | 1

| akzeptiert

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

mehr als 15 Jahre vor | 1

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

mehr als 15 Jahre vor | 1

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

mehr als 15 Jahre vor | 2

| akzeptiert

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

mehr als 15 Jahre vor | 3

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 1

| akzeptiert

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 1

Gesendet


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

mehr als 15 Jahre vor | 1 Download |

4.0 / 5
Thumbnail

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 0

| akzeptiert

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

mehr als 15 Jahre vor | 0

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

mehr als 15 Jahre vor | 1

Mehr laden