已回答
How to create a signal matrix
It looks like the issue might be because you are only looking in the first row of rankfull2 with your >319 line of code. Anyway,...

8 years 前 | 1

| 已接受

已回答
Matlab Crash: Results in System error
You should refer to the third last paragraph i.e. contact Mathworks technical support. They are always best placed to deal with ...

8 years 前 | 0

已回答
Matlab Deployment -- delete additional setting files
You can't. There is absolutely no way that the uninstall wizard can know what magic you have done inside your program and what f...

8 years 前 | 0

已回答
we want to create a logic gate simulator using gui
You could use Simulink as it has everything you need; logic, switches and gauges. It would take about 10 seconds to produce that...

8 years 前 | 0

已回答
Release a toolbox license when it has been used in a GUI
No I do not think this is possible. The license would only be returned either when the user closes down MATLAB or after a certai...

8 years 前 | 0

已回答
Importing JAVA class to Matlab - Error
This is probably a Java version mismatch. It sounds like you might have compiled using a newer version of Java (possibly JDK 1.8...

8 years 前 | 0

已回答
I want to only fft last half of data from simulink
The (end/2:end) indexing syntax will fail if you have an odd number of elements in your array. You would need to handle this cas...

8 years 前 | 0

已回答
How do I keep the menu tabs from disappearing?
It's possible to minimise the toolstrip which I guess is what you might be referring to here. Check the first item on the link b...

8 years 前 | 1

| 已接受

已回答
A problem about Gui
This is a known bug with deployed applications in 15b. Take a look at the bug report linked below for possible workarounds. I've...

8 years 前 | 0

| 已接受

已回答
GUI: function to change pushbutton color on mouseover
You should take a look at the WindowButtonMotionFcn callback property on the Figure. You could use this to define your own custo...

8 years 前 | 0

已回答
Has anyone found a way to enable/disable tabs in App Designer?
I don't believe that you can yet enable/disable tabs in MATLAB and this is something I have requested from them. Using findjobj ...

8 years 前 | 0

| 已接受

已回答
Changing the appearance of buttons in GUIDE
You can set the CData property of the uicontrol to display an image. See <https://uk.mathworks.com/matlabcentral/answers/98593-h...

8 years 前 | 0

已回答
How can I plot using a string in MATLAB?
function plotting_fcn(bool1, bool2, bool3) x1 = [1,2,3,4,5]; y1 = [10,20,30,40,50]; y2 = [20,30,40,50,60]...

9 years 前 | 0

已回答
How to tune a discrete PID when a step response is known?
Take a look at the <http://www.mathworks.co.uk/help/control/pid-controller-design.html Control System Toolbox documentation> for...

10 years 前 | 0

已回答
gca behaves different in 2014b
Christian, This seems to work fine. Are you sure you definitely have an axes in your figure? gca will only open a new figure ...

10 years 前 | 0

已回答
Add item to SharePoint 2010 list through MATLAB
For anybody who is interested in the solution, my question has been answered on Stack Overflow. http://stackoverflow.com/ques...

10 years 前 | 3

| 已接受

提问


Add item to SharePoint 2010 list through MATLAB
Is it possible to add an item to a list in SharePoint 2010 through MATLAB? I assume there must be some .NET web services that co...

10 years 前 | 1 个回答 | 0

1

个回答

已回答
Matlab: How to profile inefficient lines of code with running count visualisation?
No it's there in 2012a but just hidden away. You will be able to use the commands in the link above.

11 years 前 | 1

| 已接受

已回答
Error while deleting a line in Simulink
Command line interaction like this is not really a beginner thing. Silly question, but I assume you know you can just press the ...

11 years 前 | 0

已回答
Matlab: How to profile inefficient lines of code with running count visualisation?
You should lookup the MATLAB Profiler. This is easily accessible through the toolbar in 2012b onwards (run and time is one way)....

11 years 前 | 0

已回答
AND operation for textfiles in MATLAB
No this will not work. Just try and imagine all the possible ways that you could define the merge option for three text files an...

11 years 前 | 0

已回答
How to make a GUI Non-active But stays visible.
You could look to set the enabled property of items in your non-active GUI to off or inactive when GUI2 becomes visible.

11 years 前 | 0

已回答
How can I use csvread to read the first 2 columns of a file with variable number of rows?
Using csvread it's not possible to specify what you need to do. You can either specificy the start row and column to read from a...

11 years 前 | 0

| 已接受

已回答
How to resample a signal by a fraction
I suggest you reciprocate your a variable and round it to the nearest integer. You then just need to make sure you get the argum...

11 years 前 | 1

已回答
how to find snr ratio of audio signals in simulink? plz help me by replying as soon as possible
I suggest you first start by referring back to the definition of SNR - i.e. the power ratio between a signal and the background ...

11 years 前 | 0

已回答
How can I connect matlab to mysql?
As Sven suggests, you should use the functions within the Database Toolbox - assuming of course that you have this toolbox. The ...

12 years 前 | 0

已回答
How to read text file and put it in to a matrix format.
You should try looking up the functions textread and textscan if you want to do this programatically. Alternatively you can use ...

12 years 前 | 0

已回答
Why do I get this result??
Try this k=2*A+3*B if k<3.65 fr='inf' elseif k >= 3.65 && k<= 4.35 fr='moy' elseif k>4.35 fr=...

12 years 前 | 1

已回答
"For" loop output storage
John, you could define a variable before the first for loop such as counter = 1; and then use this to index cs in the inner loop...

12 years 前 | 0

加载更多