Beantwortet
replace first match with a value,second match with a different value etc
Did you consider using regular expressions, e.g. regexprep('some text ee1 some more text ee1 ee1', 'ee1', {'FIRST' 'SECON...

fast 13 Jahre vor | 0

Frage


Is it good or bad thing to use handle() constructor on MATLAB Handle Graphics numeric handles?
Using |handle()| on a numeric graphics handle turns it into an object, e.g. ax = handle(gca); % ax is a scalar object o...

etwa 13 Jahre vor | 2 Antworten | 3

2

Antworten

Beantwortet
how to use fprintf in string command
I guess you appreciate |fprintf(1,f,x)| can be used as a replacement for |disp(x)| but the format string |fmt| e.g. |'%s\n'| or ...

mehr als 13 Jahre vor | 0

Beantwortet
How to convert .xls file (Microsoft excel) to pdf using matlab
You could publish to PDF direct from MATLAB. Also, if you have the possibility to Print to PDF on your system and printing from ...

mehr als 13 Jahre vor | 0

Frage


How do I programmatically invoke "Find Files Tool" [Ctrl-Shift-F] GUI?
I usually invoke this window with the short-cut Ctrl-Shift-F, although it is also found in the main MATLAB command window Edit m...

mehr als 13 Jahre vor | 0 Antworten | 2

0

Antworten

Frage


Does your MATLAB FileExchange work OK?
From this UK office running R2011a, we can't see any files at all in the File Exchange from inside MATLAB. How is for your? Is t...

fast 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Do you think this behaviour of built-in functions error() and warning() is odd
I find that |warning('message', a1, a2,...)| treats args a1 etc differently to |warning('message_id', 'message', a1, a2, ..., an...

fast 14 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
equality of two matrics having NaN elements
Consider the following >> A=[1 2 3; 4 5 NaN] , B=[1 2 3; NaN 5 NaN ] A = 1 2 3 4 5 NaN B...

etwa 14 Jahre vor | 0

Frage


What are the shortcuts for switching between non-adjacent open files in the MATLAB editor
Running in MS Windows I sort of expect Ctrl-Tab to switch active tabs/files in the editor. This happens in other Windows applica...

mehr als 14 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
Running MATLAB Programs on a webpage
It is easiest to share your analysis results from MATLAB via a web-page by using the Publish feature with the output sent to or ...

mehr als 14 Jahre vor | 1