Risposto
Coordinates related to rbbox in GUI
You could just do like the example in RBBOX, and use the currentpoint property of the axes instead... figure; pcolor(pea...

circa 15 anni fa | 1

| accettato

Risposto
saving multiple vectors with different lengths in one matrix
You can use cell arrays, or pad with zeros. For example: v1 = [2 3 4 5]; v2 = [2 3 4 5 6 7]; % Make padded array. Co...

circa 15 anni fa | 26

| accettato

Risposto
Converting hhmmss.mmm to hh:mm:ss.mmm, or something like that
It is not clear to me whether you want a number or another string in a different format. If you want a number, stop after the f...

circa 15 anni fa | 0

Risposto
Subtract combinations of variables in a vector
Another approach: S = -diff(nchoosek(vec,2),[],2)

circa 15 anni fa | 1

Risposto
Help with commands varargin and switch
Probably the best thing is for you to read the doc on these topics. <http://www.mathworks.com/help/techdoc/ref/varargin.html VA...

circa 15 anni fa | 1

| accettato

Risposto
How do I make a function read all the images in a directory?
I = dir('*.jpg'); % or jpeg or whatever. for ii = 1:length(I) C{ii} = imread(I(ii).name); % Store in a cell array....

circa 15 anni fa | 1

Risposto
Division of a square
I am not sure this is what you mean, but here is a graphical demonstration of what I think you mean. % Data n = 16; % Div...

circa 15 anni fa | 1

| accettato

Risposto
extract matrix from for loop
Use cell arrays, or stack along the third dimension. for loop=1:1:10 m=[a b c d]; % I assume this is only a place-holde...

circa 15 anni fa | 1

| accettato

Risposto
expanding matrix
Here is a general purpose file for doing the same thing. What you are basically doing is finding the permutations of the set [x...

circa 15 anni fa | 1

Risposto
Order two related vectors
For example: A = [3 1 4 2]; B = {'Bob' 'Jeff' 'Mike' 'Len'}; [As,I] = sort(A);As Bs = B(I)

circa 15 anni fa | 0

| accettato

Risposto
Polyfitting warning
I'll take you at your word that you know what you are doing. ws = warning('off','all'); % Turn off warning P = poly...

circa 15 anni fa | 1

| accettato

Risposto
Anyone know a good resource for using Bloomberg through MATLAB?
A quick search of the FEX leads to <http://www.mathworks.com/matlabcentral/fileexchange/?term=Bloomberg several candidates>.

circa 15 anni fa | 0

Risposto
Stop a calculation
About the only thing you can do in general is hold down the control key and the c key at the same time. If MATLAB is really inv...

circa 15 anni fa | 2

| accettato

Risposto
FInd vector in matrix
For example: A = reshape(1:12,6,2) % A sample matrix for demonstration... I = ismember(A,[4 10],'rows'); If you want to ...

circa 15 anni fa | 1

Risposto
How can i find "AND" or "OR" of rows in a matrix?
A = round(rand(3,10)) all(A) % A(1,:) & A(2,:) & A(3,:) any(A) % A(1,:) | A(2,:) | A(3,:)

circa 15 anni fa | 1

Risposto
Combination calculations and matrix manipulation
Here is how to get all of them using <http://www.mathworks.com/matlabcentral/fileexchange/11462-npermutek NPERMUTEK> A = [...

circa 15 anni fa | 0

| accettato

Risposto
Sum of Maple to MATLAB
It would help, for those of us who do not have Maple and consequently do not know what the result of that Maple command is, if y...

circa 15 anni fa | 0

Risposto
Problems with fscanf
For some reason FOPEN did not find dados.txt. Is it in your current directory?

circa 15 anni fa | 0

Risposto
Integration Problem
Don't use symbolic variables for numerical problems. I assume you want a numeric answer because you are using numeric routines ...

circa 15 anni fa | 0

| accettato

Risposto
UIGetfile Operation - Appears to OPEN/COPY .mat files, opposite what the documentation says?
I don't know why the MAT-file would show up under Recent unless (as you are aware) it is being opened. Have you tried a custom ...

circa 15 anni fa | 0

| accettato

Risposto
Error message not connected
t = serial(...) % Try to open the connections. u = serial(...) try fopen(...) catch errordlg('First Motor no...

circa 15 anni fa | 0

| accettato

Risposto
Image Pixel Values
In addition to what others have said, this line: if z = impixelinfo(m,n) >=1 % Are you sure about the 1? is an incorrect us...

circa 15 anni fa | 1

Risposto
how to get my plp?
<http://www.mathworks.com/support/install.html Contact MathWorks support>.

circa 15 anni fa | 0

Risposto
ode45 - solving 2nd Order ODE IVP problem
[t,y] = ode45(@lander, 0:.005:6, [20,67.056]); % Calculate the acceleration from the velocity... acc = diff(y(:,2))/(t(2)-...

circa 15 anni fa | 1

| accettato

Risposto
How i can estimate the hurst parameter for a matrix of topographic data?
Would you mind elaborating on what "It doesn't work" means? Does it error? If so, what does the error message say. If not, wh...

circa 15 anni fa | 0

Risposto
String array and Numeric values
% Say your String cell looks like this: S = {'Ted' 'Jim' 'Nancy'} % To change by name: cname = 'ted'; % User want...

circa 15 anni fa | 1

Risposto
how to save outputs of a loop in vectors to use later ??? urgent please help
I don't see a th2. Assuming you meant one point per loop iteration... l1=0;%input('input l1: '); l2=3;%input('input l2: '...

circa 15 anni fa | 1

| accettato

Risposto
dividing a circle into six equal parts
You could write a custom function to do this: function P = plot_arc(a,b,h,k,r) % Plot a circular arc as a pie wedge. % a ...

circa 15 anni fa | 0

| accettato

Risposto
adding numbers in an M file
A loopless version... a = input('Enter number of days you would like to know the total of: '); S = sum(.01.*2.^(0:(a-1))) ...

circa 15 anni fa | 0

Risposto
Interpreter. Computational time
SIZE and LENGTH are not the same thing! size(rand(2,10000),1) length(rand(2,10000)) You should show what your data loo...

circa 15 anni fa | 0

Carica altro