Answered
Searching for math expert! angle of vectors in a loop using law of cosines
See also <http://www.wikihow.com/Find-the-Angle-Between-Two-Vectors> % define sample values x = [1234.77 936.40 681.39...

8 years ago | 1

| accepted

Answered
Extract values from matrix/cell in single step
Have a look at <https://de.mathworks.com/matlabcentral/answers/121045-assigning-multiple-outputs-from-a-vector> and <https...

8 years ago | 1

Answered
how delete all the negative values
x = x(find(x < 0, 1, 'last'):end);

8 years ago | 0

| accepted

Answered
How to find even positioned numbers in a vector or matrix.
if size(M,1) > 1 & size(M,2) > 1 res = M(2,2); else res = []; end

8 years ago | 0

| accepted

Answered
How to plot x=f(y) ?
Instead of plot(x,y), you plot(y,x) x = linspace(-3,3); plot(x.^3+x.^2-x+6, x), xlabel('y'), ylabel('x')

8 years ago | 0

Answered
Generating an "all-combinations" matrix for a given vector
x = [2 3 4]; n = prod(x); for i = 1:numel(x) li = []; for ii = 1:x(i), li = [li repmat(ii, [1 n/prod(x(1:i))])]; en...

8 years ago | 0

| accepted

Answered
Round each value of matrix
totaircraft = round(totaircraft);

8 years ago | 0

Answered
what is meant by index exceed matrics dimension?
If you have a 1 x 3 matrix A = [6 7 9] and try to access an element that does not exist, like A(2,3) or A(1, 4), you get ...

8 years ago | 0

Answered
Change element of a matrix in a row
help imfill

8 years ago | 0

Answered
Plotting points across the Sine Curve
plot(t, y) hold on ind = find(diff(y>0)<0); plot(t(ind), y(ind), 'ko') ind = find(diff(y>0)>0); plot(t(ind)...

8 years ago | 0

| accepted

Answered
How would I check to see if the number of rows in one matrix are equal to the number of rows in another matrix?
You can use assert assert(size(A,1) == size(B, 1), 'Matrices have different numbers of rows.') If the condition given as...

8 years ago | 0

Answered
Detail lost showing images
900 x 1800 is pretty large. You can check the screen size using get(0,'ScreenSize') If your image fits on the screen...

8 years ago | 0

| accepted

Answered
What font can I use to match my text to greek letters?
In which way are Matlab's default fonts for Greek and other characters not matching? You can change various properties, such...

8 years ago | 0

Answered
Ignore answers with imaginarey components
This is basically the implementation of Dr. Siva Srinivas Kolukula's answer: ind = ~isreal(C); A(ind) = []; B(ind) = [];...

8 years ago | 0

Answered
How to polarplot theta=3*pi/4 ?
theta = 3/4*pi; plot([0 cos(theta)], [0 sin(theta)]) axis equal axis([-1 1 -1 1])

8 years ago | 0

Answered
Apply a filter to an image
help imfilter

8 years ago | 0

Answered
converting matrix into image
I = im2double(imread('circuit.tif')); imshow(I)

8 years ago | 1

Answered
how to run a certain code loop for 'N' times and get 'N' number of output outside the loop.
You don't need the loop: A = rand(3, 5, N);

8 years ago | 1

Answered
How can I keep figures invisible when going between different figures and different subplots?
Don't use figure(2) but set(0, 'CurrentFigure', f(2)) where f(2) is the handle of figure 2, obtained with gcf wh...

8 years ago | 0

| accepted

Answered
How to change gap between legend line and legend text?
You can increase the space by adding blanks ' ' in front of the legend entries. This is a hack, of course.

8 years ago | 0

| accepted

Answered
How to draw nice dotted lines?
Check out <https://de.mathworks.com/matlabcentral/fileexchange/15743-fix-dashed-and-dotted-lines-in-eps-export>

8 years ago | 1

Answered
How can I plot an average line through this line graph
You store the values of each line in the rows of matrix X. Then use plot(mean(X))

8 years ago | 2

Answered
I need to take characters out of a string using isnan and str2double.
cellfun(@(x) sscanf(x, '%f'), regexp(a, '(\d+)', 'match'))

8 years ago | 0

| accepted

Answered
How to extract coordinates from the pattern
white = 1; % or 255, depending on the format of your image [cy, cx] = ind2sub(size(I), find(I==1));

8 years ago | 0

Answered
Plotting bar graph using loop
A=xlsread(filename); for i = 1:3, h = histogram(A(:,i+1), [0 0.3 0.5 Inf]); hi(i,:) = h.Values; end bar(hi) legend({'0:0....

8 years ago | 0

Answered
three types of correlation coefficients for an image
I = im2double(imread('cameraman.tif')); c_diag = corrcoef(I(1:end-1, 1:end-1), I(2:end, 2:end)) c_vert = corrcoef(I(1:end-1...

8 years ago | 0

| accepted

Answered
Why is my Plot Blank?
You don't need the for loop, you can work on the vector beta. You just have to replace * and / with .* and ./ (you already use ....

8 years ago | 0

Answered
Finding a chain in an adjacency matrix
You can use the power of the adjacency matrix as detailed in <http://math.stackexchange.com/questions/222429/graph-theory-sh...

8 years ago | 0

Answered
want to make a number of row matrix from a single row matrix
Your description is somewhat unclear to me. Do you mean cat(3, reshape(line1, [3 3])', reshape(line2, [3 3])')

8 years ago | 0

Load more