Answered
Hi, how can i scale the image data to 0 and 1
Use im2double

8 years ago | 1

Answered
what are all possibilities for a,b,c to be 72?
a = nchoosek(1:72, 3); idx = prod(a, 2) == 72; a(idx, :)

8 years ago | 0

| accepted

Answered
How I connect more legends?
You can use h(1) = plot(... %your first plot h(2) = plot(... % your second plot from another script h(3) = plot(....

8 years ago | 0

Answered
How to find mean gray level in gray scale image
If you write a script and call it 'meangraylevel.m', that script changes only the variables that you use in the script, but not ...

8 years ago | 0

Answered
HOW TO USE RANDOM and Cross paired?
K2 = 0.5*rand(100, 1); K2(K2 < 0.25) = 0.25 + K2(K2 < 0.25); iwant = [0.5*ones(100, 1), K2, 0.5 - K2];

9 years ago | 0

Answered
How can I count the number of times the value of an array/vector/matrix changes value from x to y?
firstvalue = 2; nextvalue = 1; A = A(:); % convert matrix to vector N = nnz(A(1:end - 1) == firstvalue & A(2:end...

9 years ago | 1

| accepted

Answered
How to calculate the area enclosed by these 2 curves ?Image attached below....
You can use polyarea to calculate the area of a polygon.

9 years ago | 0

Answered
imhist in image processing
The number of pixels of this intensity.

9 years ago | 0

Answered
point coordinate markers of selected points
You don't need find, you can work with logical indices: plot(x(index), y(index), 'or');

9 years ago | 0

Answered
Bitmap image wrongly inverted
[I, map] = imread('../../Downloads/scene_l.bmp'); imshow(I, map) J = ind2rgb(I, map); % convert to non-indexed image ...

9 years ago | 1

| accepted

Answered
How do I use a for loop?
F=randn(3,1)./W; for i = 1:5 Q = inv(A - S*eye(3))*F; F = W./Q; W = Q; end J = (F.*F)./(Q.*F); T = ...

9 years ago | 1

Answered
Calculating a mean matrix from a large number of matrices
In the for-loop, you can just use if k == 1, M = 1/length(Files)*Data; else M = M + 1/length(Files)*Data; ...

9 years ago | 0

Answered
count number of shifts in data based on conditions
If x is the vector of your data, you can get the vector of shifts by 1 as dx = diff(x) == 1; And to count the number o...

9 years ago | 0

| accepted

Answered
How to mimic the colormap of a RGB image?
I = im2double(imread('../../Downloads/Colormap.png')); % read and convert to double I = I(:,1,:); % we just need each color...

9 years ago | 0

| accepted

Answered
How to read and display multiple images in matlab
Try folder='Documents/MATLAB/';

9 years ago | 0

Answered
Removing the zero that precedes the decimal point
strrep(num2str(a), '0.', '.')

9 years ago | 1

Answered
filename of function print
medium = 'XYZ'; replica = 'Replica1'; nameCurve = ['growthcurve', medium, ' ', replica]; nameSemlog = ['semilogy grow...

9 years ago | 1

| accepted

Answered
c0 and x are scalars, c - vector, and p - scalar. If c is [ ], then p = c0. If c is a scalar, then p = c0 + c*x . Else, p =
function y = mypolyval(c0,c,x) if isempty(c) y = c0; else y = c0 + power(x, 1:numel(c))*c(:); end Th...

9 years ago | 2

| accepted

Answered
How to remove duplicates in a specific manner?
B = unique(unique(A, 'rows')', 'rows')'

9 years ago | 0

Answered
if i want to plot a graph as i have shown in the figure, but at one particular angle without any radius...how should i do it ? l
axis([-1 1 -1 1]), axis equal angle = 30; line([0 cosd(angle)], [0, sind(angle)])

9 years ago | 0

Answered
how to write this for cycle
You have to use a cell array because your indices have different sizes e = 6:12; for i = 1:numel(e), x{2^e(i)} = 0:1/2^e...

9 years ago | 0

Answered
Check for existence of nested fields
You can use my function isnestedfield: function yn = isnestedfield(s, fields) %ISNESTEDFIELD True if nested fields are i...

9 years ago | 2

| accepted

Answered
How can i create a large colum variable with continious step?
You don't need a loop, you can use Matlab's colon operator to define a range of values first_value:step_size:last_value. You can...

9 years ago | 1

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...

9 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...

9 years ago | 1

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

9 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

9 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')

9 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...

9 years ago | 0

| accepted

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

9 years ago | 0

Load more