回答済み
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

| 採用済み

さらに読み込む