Answered
Out of memory issue
Use |./| instead of |/|. Elementwise division.

13 years ago | 0

Answered
changing the date format of a vector
datestr(A,'dd/mm/yy')

13 years ago | 0

| accepted

Answered
Binning elements between limits
Yes the function is called <http://www.mathworks.co.uk/help/matlab/ref/histc.html |histc()|>. Read the documentation *carefully*...

13 years ago | 1

Answered
about title of GUI
You can control the size of the font with the property |_'FontSize'_|: title('keyframe video','Fontsize',14);

13 years ago | 0

Answered
about controling of figure
You cannot: your request constitutes a breach of MathWorks license agreement. <http://www.mathworks.co.uk/support/solutions...

13 years ago | 1

Answered
handling irregular observations. Maybe more progress needs to be made by Matlab team
I gave a look at SAS and honestly I don't understand how they got those values! My approach was to take intra-month averages ...

13 years ago | 0

| accepted

Answered
increase the length of a martix every 5 rows
The efficient code: [r,c] = size(A); add = floor(r/5); Anew = NaN(r + add,c); idx = (...

13 years ago | 1

| accepted

Answered
matlab from basic scratch
http://www.mathworks.co.uk/company/events/webinars/index.html You can only watch them online, no download is allowed.

13 years ago | 1

Answered
how to create a loop for matrix iteration
*DO NOT* do that! Read this FAQ: <http://matlab.wikia.com/wiki/FAQ#How_can_I_create_variables_A1.2C_A2.2C....2CA10_in_a_loop....

13 years ago | 2

Answered
ordering open .m files in the windows menu.
|right click > alphabetize| OR It can be done using the API editor introduced with R2011a: http://blogs.mathworks.com/com...

13 years ago | 1

Answered
How to construct a script to create a vector of variables from many different scripts
It's hard to say without knowing what you do in the scripts, but two things: * |metastat| is not |metaCSstat| * If you are u...

13 years ago | 0

Answered
Parallel toolbox computing question
You cannot call in parallel the 3rd function only since it depends on the inputs generated by function 2 and 1. If the whole ...

13 years ago | 0

Answered
A question: Eviews-Matlab interface?
Actually I found this white paper: http://www.eviews.com/download/whitepapers/EViews_COM_Automation.pdf So virtually you can ...

13 years ago | 1

| accepted

Answered
how to save a file into another folder by using uiputfile
If you can ask where to put it first then you can simply solve your problems with: fileID = fopen('...\chosenDir\output.dat...

13 years ago | 5

| accepted

Answered
Solve an expression including a function
Bring everything to LHS: solve('expression - f(function(x))','x')

13 years ago | 1

Answered
data frequency conversion problem
*EDIT#2* I didn't notice at first that it had different series. Added also linear interpolation of NaNs: % Inpaint NaNs and k...

13 years ago | 1

| accepted

Answered
How can I join two text string within two cell arrays
What about this alternative approach: data = urlread('http://weather.noaa.gov/cgi-bin/fmtbltn.pl?file=forecasts/marine/coas...

13 years ago | 1

Answered
p value to z score
Use <http://www.mathworks.co.uk/help/stats/icdf.html |icdf()|> from the Statistics Toolbox. For (standard) normal: icdf(...

13 years ago | 0

Answered
Is there a command for/how to convert a binary number to binary vector?
a = '101010101010101010'; a = a - '0';

13 years ago | 1

| accepted

Answered
converting a vector entry into string
It appears to be a typo, are you sure that you're using |num2str()| instead of |num2srt()|?

13 years ago | 1

| accepted

Answered
How do I find all sequences of at least 3 in which values are increasing or decreasing?
These functions will get you started: * <http://www.mathworks.co.uk/help/matlab/ref/diff.html |diff()|> the two vectors * Us...

13 years ago | 0

Answered
for loop to show all alternatives
nchoosek(1:10,4)

13 years ago | 1

Answered
Question about 'lognrnd' function
Reading carefully the documentation of |<http://www.mathworks.co.uk/help/stats/lognrnd.html lognrnd()>|: _R = lognrnd(mu,sigm...

13 years ago | 1

Answered
How to use the not sign on the mac version of matlab
The feature you're referring is only available from R2009b onwards: http://www.mathworks.co.uk/help/techdoc/rn/br5fo8o-1.html#br...

13 years ago | 2

Answered
Semi-repeatable Cellfun Error
You can try this solution to format currencies: http://www.mathworks.com/matlabcentral/answers/32171#answer_40659 I suggest t...

13 years ago | 1

| accepted

Answered
How do i implement interactive input of multiple variables?
answer = inputdlg({'x','y','z','w'},'Title')

13 years ago | 0

Answered
How can I write to a txt file dynamically?
A = [ 4 45 345 34 34 88 455 73]; % Number of columns N = 2; % Create/open file discarding con...

13 years ago | 1

Answered
changing the format of a date vector
idx = cellfun('size',A,2) > 8; A(idx) = cellstr(datestr(datenum(A(idx),'dd/mm/yyyy'),'dd/mm/yy'))

13 years ago | 0

Answered
I nead help, xlsread(file,-1).
I'll rephrase the question to make it clear. _How can I return the address of the data which I selected interactively with:_ ...

13 years ago | 2

| accepted

Answered
Looking for Automated Matlab Code to Latex Command Translator Tool
I am not sure I understood your question, but I use this submission from the FEX: <http://www.mathworks.co.uk/matlabcentral/f...

13 years ago | 0

Load more