Answered
How to export a figure with its UI elements in Windows 7?
See <http://www.mathworks.se/help/matlab/ref/print.html#options_target> -noui, Suppress printing of user interface contro...

12 years ago | 0

Answered
Class definition @ directory error
I assume that * you created the folder _"/home/..../multipoly/@polynomial"_ * you created the file _"polynomial.m"_ * the...

12 years ago | 0

| accepted

Answered
I have two figure in my output result but I want to show both figure in a single figure, How can I ?
Search the FEX: * <http://www.mathworks.se/matlabcentral/fileexchange/23135-subfigure SUBFIGURE> and possibly more

12 years ago | 0

Answered
How to create a folder under program generated folder name?
This works for me (R2013a) %% folder_name = 'name_of_subfolder'; % this subfolder does not exist parent_f...

12 years ago | 1

| accepted

Answered
How to publish text and pictures in a loop
I've found the answer, which raises a new question. How come I missed the importance the position of *"%%"* relative to the loop...

12 years ago | 1

Answered
How to save a matrix having cell array into csv
This is a more standard approach (without |list|) %% name = {'Jake'; 'Mike'}; age = [24; 22]; fid=fope...

12 years ago | 1

Answered
Creating a Vector with specified entries
This is better %% n = 12; num = repmat( [1:n], 2, 1 ); num = transpose( num(:) )

12 years ago | 0

| accepted

Answered
Monthly Percentiles Atmospheric Data
If you have the Statistics Toolbox, search for prctile

12 years ago | 0

Answered
Cell arrays in MATLAB
Create an empty column cell array >> cell_array = cell([], 1); >> whos Name Size ...

12 years ago | 0

Answered
The class file for ... has been changed; but the change cannot be applied because objects based on the old class file still exist.
I don't know for sure but * I have not seen any _"any more specific information "_ * After adding (or renaming) methods or...

12 years ago | 2

| accepted

Answered
How do I convert my .m file into a .exe file?
See <http://www.mathworks.se/products/compiler/>

12 years ago | 0

Answered
Cell Array to .txt file
Try %% str = '%;O0000;G20;G0G17G40G49G80G90;T1M6;'; cac = regexp( str, ';', 'split' ); str = sprintf( '%s...

12 years ago | 1

| accepted

Answered
Reading an Excel File (Excelfinlename.dvd) with decimal comma instaed of decimal point?
I don't recognize these extensions. *I assume they are text.* Here are two files, which replace comma by dot. Pick one. Pleas...

12 years ago | 0

Answered
How to read file '100.dat' and '100.atr' of MIT BIH DATABASE (PHYSIONET)?
Your question ought to include * a link to the data * details on the error However, I downloaded the data (100.dat,100.a...

12 years ago | 2

| accepted

Answered
How can I make a vector of constant value which length is 100 not using 'for&while'.
Try a = 3 + zeros( 1, 100 ); and a = repmat( 3, [1,100] );

12 years ago | 4

| accepted

Question


Why does strcmp take numerical arguments?
I found an old bug in my code. I pass by mistake a numerical value to |strcmp|. Now, I made a little test with R2013a %% ...

12 years ago | 2 answers | 2

2

answers

Answered
Bringing plots into a single figure
Many contribution to in the File Exchange address your problem: * there are dozens of replacements for subplot, however, I fa...

12 years ago | 0

Answered
How to compare two matrices of diffrent dimensions by looping.
Not by looping, however try %% a=[1,2;3,4]; b=[1,5,6;4,0,8;11,12,0]; %% sza = size( a ); is_g...

12 years ago | 0

Answered
Not enough input arguments
Try >> seven_raised_to_two = my_Square( 7 ); where function y = my_Square(x) y = x^2; end ...

12 years ago | 1

Question


A GUI to the new Unit Testing Framework
*Background* * R2013a comes with a <http://www.mathworks.se/help/matlab/matlab-unit-test-framework.html?searchHighlight=testi...

12 years ago | 1 answer | 3

1

answer

Answered
Experiences with release 2012b
I'm hit by the ribbon, i.e. Matlab Toolstrip. I updated the other week because of a fixed bug. (R2012a was uninstalled.) Now, I ...

12 years ago | 1

Answered
First non-zeros of a sparse array
Did you try ix = find( A ~= 0, 1, 'first' ); and something like ix = find( A("m*(2^k) + 1") ~= 0, 1, 'first' )...

12 years ago | 1

Answered
function infindcircles is not define in R2013a matlab
See <http://www.mathworks.se/help/images/ref/imfindcircles.html>

13 years ago | 0

Answered
Using FGETL to skip 2 header lines
Call it twice and ignore the results.

13 years ago | 0

| accepted

Answered
How to register a class method as a figure callback?
_"OPTION 1 : take snapshot[...]hopefully its state hasn't changed[...]"_ Changes of the object should not be a problem with a...

13 years ago | 1

| accepted

Answered
how can i browse the files in my computer using the gui in matlab?
See * <http://www.mathworks.se/matlabcentral/fileexchange/3242-browse-for-folder Browse for folder>

13 years ago | 0

Answered
Not enough input arguments.
The line theta,rho,point1([row,col]),point2. is a suspect Set >> dbstop if error or set a breakpoint i...

13 years ago | 1

Answered
Elegant way to return point a specific value occurs at in a vector
Logical indexing is one of my hammers, thus I saw a nail;-) %% N = 1e4; Slopes = randn( N, 1 ); %% ...

13 years ago | 0

Answered
Performance tuning - finding CPU time
See * <http://www.mathworks.se/matlabcentral/fileexchange/18798-timeit-benchmarking-function TIMEIT Benchmarking Function> an...

13 years ago | 1

Load more