답변 있음
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년 전 | 1

| 수락됨

답변 있음
[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년 전 | 1

답변 있음
How to specific random numbers rang?
randi([1 9],m,n)

대략 15년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

답변 있음
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년 전 | 2

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 1

| 수락됨

답변 있음
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년 전 | 1

| 수락됨

답변 있음
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년 전 | 1

답변 있음
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년 전 | 1

답변 있음
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년 전 | 2

| 수락됨

답변 있음
[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년 전 | 3

답변 있음
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년 전 | 0

| 수락됨

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

대략 15년 전 | 0

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

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

대략 15년 전 | 1

| 수락됨

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 1

제출됨


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

대략 15년 전 | 다운로드 수: 1 |

4.0 / 5
Thumbnail

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

답변 있음
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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0

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

대략 15년 전 | 1

더 보기