Community Profile

photo

Maik


Last seen: 2 days ago Active since 2022

Followers: 0   Following: 0

Statistics

  • Knowledgeable Level 2
  • First Answer
  • Explorer

View badges

Feeds

View by

Question


Matching points between two point sets.
Set 1 size 20x2 and Set 2 size 23 x3. I want to remove 3 points from Set 2 which would be points missing in Set 1 but the po...

1 year ago | 1 answer | 0

1

answer

Answered
Adding multiple labels to a graph
% You can use nodenames propertiest of digraph. However the names must be unique s = [1 2 3 4 6 7 8 10]; t = [3 3 4 5 7 5...

1 year ago | 1

Answered
How do I change the interval on one of my axis at different points along the axis?
You can try setting axes properties that should keep the scale. x1 = 0:0.1:40; y1 = cos(x1).^2; x2 = 1:0.2:20; y2 = sin(x...

1 year ago | 0

Answered
I am trying to randomize a marker color
I assume the randi in your program was the problem. Here below we use it to generate a single value everytime and pass it to th...

1 year ago | 0

Answered
Labeling an Image (houghcircle)
% Code: clear all clc %Show Image in GrayScale I = imread('coins.png'); imshow(I) BWI = im2gray(I); figure imshow(BWI) ...

1 year ago | 0

Answered
H,S,V components
Im = imread('peppers.png'); % Display RGB image figure;imshow(Im); % Convert RGB to HSV hsvIm = rgb2hsv(Im); % ...

1 year ago | 1

| accepted

Answered
Error using horzcat Dimensions of arrays being concatenated are not consistent.
That error can be overcome if you use transpose as vectors of different dimensions can be concatenated horizontally. Here your...

1 year ago | 0

| accepted

Answered
how do plot x(n)=u(n-2)-u(n-5)
n = (-20:20); u_n = n>=0; u_n_2 = n>=2; u_n_5 = n>=5; u_diff = u_n_2 - u_n_5; subplot(3,1,1); stem(n,u_n_2);xlim([-15 15])...

1 year ago | 0

| accepted

Answered
how to Write a function that takes a file name as its only argument (input value) in Matlab ?
You can save the file as a function with no inputs and pass its output as inputs to the second function. 1st Function = sumOfN...

1 year ago | 0

Answered
The 2D convolution in spatial frequency domain
You can replace the convolution with Fourier Multiplication. I = randi([1 256], 512,512); J = randi([1 256], 512,512); % T...

1 year ago | 0

Answered
How to make this crank slide animation do 3 revolutions?
It can be done using two "for" statements. p01fig = figure; r = 2; d = 5; t = mylinspace(0,2*pi,45); [x,y] = mycircle(r,t);...

1 year ago | 0

| accepted

Answered
How can I make a filter with the Lorentzian peak to use in imfilter?
You can try generating Lorentzian mask by fitting on random or Gaussian data and converting it to mask. For more customizati...

1 year ago | 1

Answered
Too many Input arguments error
For the vpa function y==terrain is your x argument. No need to mention x in the input. s=vpa(y==terrain,x, '6'); Instead us...

1 year ago | 0

Answered
Is it possible to change specific markers in the same data set on a probplot?
%% Sample Data rng('default'); x = wblrnd(3,3,[20,1]); figure; hdata = probplot(x); %% Get the X & Y data points from hda...

1 year ago | 0

Answered
How do I turn off arrowhead using quiverm (Mapping Toolbox)
You could change the marker shape and then delete it using findobj. %% Sample Data From Mathworks Help Page load("wind","x...

1 year ago | 0

Answered
i have arrays of size 234X64X8, 234X64X8,234X64X8 and 234X64X8 inside a cell of size 4X1. i want it to be a shape of 936X256X32 as a 1X1 cell. how to do?
% Code for Cell Concatenation - Input Size(234x64x8) Arr = ones(234,64,8); cellArr = {Arr, Arr, Arr, Arr}'; % Concatenation A...

1 year ago | 0

Answered
How to convert a time series data to txt file?
%% Time Series Data in to Text File timeSeriesVector = randi([1 10],30,1); txtFileCreate = fopen('timeSeriesVector.txt','wt')...

1 year ago | 0