已回答
how to manage static texts when radio button clicked?
Hi, Lets assume you created this in GUIDE and Donor radio button has the tag value of donor_radio acceptor is acceptor_radio...

11 years 前 | 0

| 已接受

已回答
choose coulor of plot
Hi Max, Sorry I'm a bit lazy to actually write a code, but I'm sure you can do it, and you can do it the you want it. I re...

11 years 前 | 0

提问


Calling Additional Functions in GUI
Hello Everyone! Thanks for your attention. I've created a GUI using *GUIDE* with lots of edit boxes, what I do in the edi...

11 years 前 | 2 个回答 | 0

2

个回答

已回答
Passing Pointer to DLL file
I found the problem. I had to terminate the commands with ' ; ' Something that I did not need to do while using RS232! s...

11 years 前 | 0

| 已接受

提问


Passing Pointer to DLL file
Hi Everyone. Thanks so much for your attention and help in advance. I' have a problem with TTi (TGA12104) Arbitrary Wavefo...

11 years 前 | 3 个回答 | 0

3

个回答

已回答
DSP Toolbox use left and right speaker
Hi TU, If you're creating the signals, why not using an analog output (winsound)? Another point! I'm not sure if you can s...

11 years 前 | 0

已回答
Vertical to horizontal data
As mentioned, you need to reshape the matrix, but for your data size, which is 125000, since it's not a multiply of 62 you need ...

11 years 前 | 0

已回答
i wanna a matlab code for this problem if anyone can help , please ?
http://www.mathworks.co.uk/help/matlab/ref/fft.html?searchHighlight=fft

11 years 前 | 0

| 已接受

已回答
Solving Linear System of Equations.
With many thanks to Mischa I find a solution for this homogeneous system of equations using null(a,'r') gives a perfect...

11 years 前 | 0

| 已接受

提问


Solving Linear System of Equations.
Hi ppl I was wondering how to solve this particular one without any manipulations or simplifications! Assume the coffs are gi...

11 years 前 | 2 个回答 | 0

2

个回答

已回答
get transfertfunction from fdesign.bandpass
There are some commands that transfer different parameters to transfer function such as latc2tf ss2tf zp2tf s2tf ...

11 years 前 | 0

| 已接受

已回答
Problem: write a function with several functions inside.
You can definitely use functions inside the functions. I just did it couple of weeks ago, and I defined the functions as anon...

11 years 前 | 0

已回答
Problem: write a function with several functions inside.
First I suggest you to write your functions in a different form, which you may find it way easier to work with. Anonynous fun...

11 years 前 | 0

已回答
Can you put a function inside a for loop?
Hi Jacob You have to make anoher function or script, lets call it 'main' in case you made a function, and in 'main' you can ...

11 years 前 | 0

已回答
How do I print a mixed expression ( numeric and symbolic) to a file?
The only way that I know of is to concatnate just as I showed u! I edited a whole bunch of text files like this. I don't thin...

11 years 前 | 0

已回答
How do I print a mixed expression ( numeric and symbolic) to a file?
You can use sprintf or easier way is to concatnate strins myString=sprintf(); fprintf(myFile,myString); or f...

11 years 前 | 0

已回答
how to construct the 10x10 matrix
Hi for this specific case is very easy, for other cases a little adjustment might be needed. x=meshgrid(1:10); Good L...

11 years 前 | 0

| 已接受

已回答
the superscript in the textbox in the figure?
Another instance when you have numbers to deal with! >> x=30 x = 30 >> figure >> text(.1,.1,[num2str...

11 years 前 | 1

已回答
the superscript in the textbox in the figure?
I don't know what version of MATLAB you are using! But the following code resulted as such on my PC with 2012a and it's really e...

11 years 前 | 1

已回答
the superscript in the textbox in the figure?
If you have a variable then you can concatenate the string simply x=30; title([num2str(x),'^c']) or legend or text or xl...

11 years 前 | 1

已回答
the superscript in the textbox in the figure?
As I remember MATLAB understand a little bit of Latex! lol If you've ever worked with Latex which is just like writing in a l...

11 years 前 | 1

已回答
functions in matlab gui
Actually, I think diagbox is for VC, I'm sure you already found it. but You may use this code msgbox('Error Message','Nam...

11 years 前 | 0

已回答
functions in matlab gui
@ Husaiyn Alright now it's clear! Go to the error corresponding line, error line is probably given to you in the MATLAB er...

11 years 前 | 1

已回答
how can in plot(teta,Xb)
We have to solve your equation so that we get Xb values for known values of teta So let's do it as such teta=0:0.2:5; ...

11 years 前 | 0

已回答
save only one value
Sorry, but even your English is a bit confusing, just like mine! lol Is the problem of having two 4 bothers you? If so then ...

11 years 前 | 0

已回答
How do I convert a string input to an executable equation?
you can simply use 'inline' I've precviously written and equation solver, and it works like a charm, it also has a GUI and it...

11 years 前 | 1

| 已接受

已回答
[SOLVED] How to read data file from a specific line ?
Hi buddy It's dead easy, I'm copy pasting part of a code I wrote to manipulate text files in which I read the text file line ...

11 years 前 | 3

| 已接受

已回答
How can I draw a circle in matlab using parametric ecuations or the circle ecuation?
That's one simple way you can do it x= sin(0:.01:2*pi); y= cos(0:.01:2*pi); plot(x,y); axis equal also try belo...

11 years 前 | 0

已回答
how to make status array (like status=010) instead of status variable which holding one value
if true % code endMake a array as such status(1:3)=[0 1 0] then you can call status(1) and it will show you 0 ...

11 years 前 | 0

已回答
once matlab is closed is there any way to edit the gui which was working previously.
In the MATLAB command line type 'guide' then GUIDE Quick Start menu will popup. Go the the 'Open Existing GUI' and there you sh...

11 years 前 | 2

| 已接受

加载更多