답변 있음
How do I force a compiled function to exit with a non-zero status yet allow the overall application to continue to run.
You want to in effect transfer information from one exe to another. Is that correct? Since you are using the system command ...

9년 초과 전 | 0

답변 있음
Opening a txt file with chosen directory location
x_Filename is a cell array, you need to pass the individual file into fopen: file_x = fopen ( x_Filename{1} ) You s...

9년 초과 전 | 0

| 수락됨

제출됨


gui2pdf
Create PDF from GUI - multiple images in single PDF

9년 초과 전 | 다운로드 수: 1 |

Thumbnail

답변 있음
Formatting Legend Entries Properly
When using sprintf you have to cancel the \ operator, to do this use a double \\ str{box} = sprintf(... % aiming for: "A - \...

9년 초과 전 | 1

| 수락됨

답변 있음
trouble with switch case
use curcly brackets to switch on the cell item. switch input{1}

9년 초과 전 | 0

| 수락됨

답변 있음
Update multiple YData on plot without losing focus
you need to save the handles for each of your 3 plots h1 = plot ( t_whole, '-k'); h2 = plot ( fit.mode,'-b'); h3 = pl...

9년 초과 전 | 1

답변 있음
catching a value while matlab is running
you could use listeners, but you could also use the dbstop ability to stop on condition, i.e. dbstop in MFILE at LINENO if...

9년 초과 전 | 0

답변 있음
If condition with a cell include both number string and text string?
The problem here is the use of str2num in your conversion and the fact one of your inputs is text (which is a matlab function na...

9년 초과 전 | 1

| 수락됨

답변 있음
how can I move a Point in a plot (GUI) from one side to the other in a fixed time?
*edit:* changed timing to an overall target for loop instead of interval time. See the code below: figure; ax = axes; ...

9년 초과 전 | 0

| 수락됨

답변 있음
Remove "( )" from string words
*regexp* is very compact and powerful - however it can be a bit slow. If speed is an issue a simple for loop and *strrep* can...

9년 초과 전 | 0

| 수락됨

답변 있음
Import data and text in huge csv files into matlab and convert to matfiles
Use low level routines to read the file. fopen fgetl strread or textscan Using this you are in complete control.

9년 초과 전 | 0

답변 있음
Plotting letters instead of symbols
The text function allows you to write text on an axes. help text

9년 초과 전 | 0

답변 있음
Barweb in 2014b doesn't work any more
The problem with this function is that it is failing on getting the X position of each bar - so that the errorbar can be placed ...

9년 초과 전 | 1

| 수락됨

답변 있음
Help: Display a different layout when pushing a button in a GUI?
The reason your code doesn;t work - is that when the callback for the pushbutton is created the variable S.tab1 doesn't exist. ...

9년 초과 전 | 0

| 수락됨

답변 있음
Assigning a variable in a function that is available in the function
Create a sub function which assigns (using assignin) your variables in the caller function where the caller function is the one ...

9년 초과 전 | 0

답변 있음
Is MCR installation supported on all platforms? If not, what platforms are supported??
The advised thing is for you to go back to the version which is on the cluster - thats what I have done in this situation in the...

9년 초과 전 | 0

답변 있음
Set and enforce axis properties immediately
when you create your subplot set the Xdir then: subplot ( 1, 2, 1, 'xdir', 'reverse' ); % your other code goes here ...

9년 초과 전 | 0

답변 있음
Need help with plotting a graph on matlab- linewidth
If you split it over two plot commands it will work: plot(x_values,y_values,'b:','linewidth',2) plot(x_values,subs(g1,x_va...

9년 초과 전 | 0

답변 있음
Enable / Disable specific listbox item
By using this <http://www.mathworks.co.uk/matlabcentral/fileexchange/46755-str2html FEX> you can make it look like things are di...

9년 초과 전 | 0

답변 있음
How do you make multiple variable assignments from s struct?
If you choose to do it the way Joseph Chang mentioned - then I would strongly advise that you change the eval statement to use d...

9년 초과 전 | 0

| 수락됨

답변 있음
GUIDE Tabs Support in R2014b
I guess the answer to this will become known once R2014b is released - in the meantime you could look at <http://www.matpi.com t...

9년 초과 전 | 0

답변 있음
how to make a char using many letters instead 3
The best solution is to use cell arrays, but if you need it all in a single matrix it needs to be square. Every row (month)...

9년 초과 전 | 0

답변 있음
Working with uicontrol / Working wihout GUIDE
I see this has alreayd been answered(and accepted), but my advice is *dont give up*. Your GUIs will be a lot better and you c...

9년 초과 전 | 1

답변 있음
Using dir() in a compiled script
You get the fprintf error becuase your variable files is empty. You should look at the var <http://www.mathworks.co.uk/help/m...

9년 초과 전 | 0

| 수락됨

답변 있음
using num2str to name a graph in plot
try: text(1,1, ['y = ' (num2str(a)) 'x^{' (num2str(n)) '}' ] )

9년 초과 전 | 1

| 수락됨

답변 있음
FAQ: How can I create variables A1, A2,...,A10 in a loop?
I 100% agree with Jan that *creating new variables on the fly* is something that *should be avoided* - but if you must then plea...

9년 초과 전 | 2

답변 있음
how to split column vector when 0 come?
You could do: A= [0;23;45;64;34;3;0; 12; 14;0; 12;354;13;324;25;254;0]; index = find(A==0); for ii=1:length(index)-1 ...

9년 초과 전 | 0

답변 있음
how to extract one variable from mat flies
You can request the "data" variable explicitly from the file: load ( filename, 'data' ); Note this will add a new var...

9년 초과 전 | 0

답변 있음
Can you set figure axis properties without using gca as argument to the set command?
you are returning the axes properties as a static structure - which cant be edited in the way you have done it, however you coul...

9년 초과 전 | 0

| 수락됨

답변 있음
Problem related to legend
When you create your plot save the handles of the plots that you want to add to the legend - then when you create your legend pa...

9년 초과 전 | 1

| 수락됨

더 보기