Answered
Libboost Error - Matlab 2012a Student Version on Mac OS X 10.8
You can contact Installation Support to have them help you get it installed.

14 years ago | 0

Answered
How do I change figure mode programmatically?
%% peaks %Select interactive mode of choice %% zoom off %deselect it rotate3d off

14 years ago | 3

| accepted

Answered
Image Inserted in a Mesh Plot
See my: <http://www.mathworks.com/matlabcentral/fileexchange/29485-meshcanopy FEX:meshCanopy>

14 years ago | 0

| accepted

Answered
split a vecor into several parts (of different sizes) to later fill a matrix.
I have a simple |for|-loop showing a 2.7x and a 9.5x speed up over Andrei's solutions for V,S being this size. In general, a |f...

14 years ago | 0

Answered
regarding use of camera of laptop when asked?
How about using a |questdlg| to ask the user? button = questdlg('Would you like to open the camera?','Camera Control','Yes!...

14 years ago | 0

Answered
Avoiding eval when overloading a function
Perhaps (probably) I'm missing something, but could you just use |fprintf|?

14 years ago | 0

Answered
Does Matlab have a mode filter?
Nope, but you could use |colfilt| to do this really easily. doc colfilt

14 years ago | 0

| accepted

Answered
How to sort the elements of a matrix in a random order
So you want each column to be sorted randomly but to still be in the column it came from? A=[4,5,8,1,6,3]'; B=[1,2,3,7,9,6...

14 years ago | 0

| accepted

Answered
Combining a text (cell) vector with a number (double) vector...?
If you have the Statistics Toolbox, you can use the |dataset| class for this: c = cellstr(('helloworld')') x = (1:10)'; D...

14 years ago | 0

Answered
Multiple Calls to Functions in Separate MATLAB Sessions
Not to my knowledge. (Unless it shares a file read/write or something like that).

14 years ago | 2

| accepted

Answered
Summing within an array to change the size
If you have the Image Processing Toolbox: x = rand(111,46,2); y = blockproc(x,[3 3],@(s)sum(sum(s.data,1),2)); Or if yo...

14 years ago | 0

| accepted

Answered
If I am no longer a student but want to learn MATLAB, what version should I buy?
<http://www.mathworks.com/company/jobs/opportunities/>

14 years ago | 3

Answered
determining if characters are alphabetic
s = 'Hello World it''s 1129 on Monday August 27th'; %With for-loop for ii = 1:1 sletters = s(isstrprop(s,'alp...

14 years ago | 0

Answered
Genetic Algorithm_ways for Reproduction?
Sounds like you'll want to use the _'SelectionFcn'_ to select the next generation: <http://www.mathworks.com/help/releases/R2...

14 years ago | 0

Answered
How to save cftool plot to matlab figure in 2012a?
You are correct it does not exist in 12a and we are aware of this. To create the figure, save the fitted model to the workspace...

14 years ago | 0

| accepted

Answered
how to create a 3D diagonal matrix from a 2D matrix ?
So each slice of B should contain a column vector (like you have above)? Why not just use a FOR-loop? or |bsxfun|? For example...

14 years ago | 0

Answered
Licensing issue with compiled code - am I illegal?
Someone should have gotten back to you. Please try emailing <support@mathworks.com> or creating a Service Request through your...

14 years ago | 1

Answered
How to insert a Data Cursor on a specif location from command ?
<http://www.mathworks.com/matlabcentral/fileexchange/19877-makedatatip FEX:makedatatip>

14 years ago | 1

| accepted

Answered
How can I get the index of the selected item in a pop-up menu within a uitable?
Well written question f=figure; choices={'A' 'B' 'C' 'A'}; t=uitable(f,'ColumnFormat',{choices}, 'Data', {'';'';''} ,'Col...

14 years ago | 0

Answered
Help with multiplication of cell arrays
If you have the Neural Networks Toolbox: <http://www.mathworks.com/help/releases/R2012a/toolbox/nnet/ref/gmultiply.html doc ...

14 years ago | 0

Answered
I have a cell array (36*72*1000), I wish to extract every other cell column-wise and every cell row-wise...
C(:,2:2:end,:) %all rows, even columns, all pages *More* Since you only want one element from each row, it will require ...

14 years ago | 0

| accepted

Answered
How do I cut out an area that I've created a boundary to?
doc poly2mask To turn your boundaries into a mask that can then me elementwise multiplied by the image to show just what's ...

14 years ago | 1

Answered
List box with strings, Append those strings in the title of the figures when clicking on it.?
figure; imshow('cameraman.tif'); str = {'red','green','blue'}; hL = uicontrol('style','list','string',str,... 'callbac...

14 years ago | 0

Answered
Just out of curiosity I would like to know where the code for MATLAB parser is?
<http://www.mathworks.com/company/jobs/opportunities/>

14 years ago | 2

Answered
How to find angle of rotation between two images
<http://www.mathworks.com/help/releases/R2012a/toolbox/images/ref/imregister.html doc imregister>

14 years ago | 1

Answered
Add a uicontrol push button in uitable to refresh data
Since a |uitable| does not have an _'XDataSource'_ etc. it will not update with |refreshdata|. You will need to write your own ...

14 years ago | 0

Answered
adding vector entry after each element
And just for fun: filter(x(2:end),1,ones(1,numel(x)-1))+x(1)

14 years ago | 0

Answered
How to create a matrix such that all the row elements add up to 1 and the column elements add up to 1?
Your comment on the constraint making only one unique matrix is not true. If: x = magic(5); then x' flipud(x) ...

14 years ago | 0

Answered
Can I force a radio button group to initialize with a certain button selected?
Of course. ug = uibuttongroup; h(1) = uicontrol('style','radio','parent',ug,'position',[50 50 50 10],'value',true,'string'...

14 years ago | 1

Load more