Community Profile

photo

Maik


Last seen: 6日 前 2022 年からアクティブ

Followers: 0   Following: 0

統計

  • Knowledgeable Level 2
  • First Answer
  • Explorer

バッジを表示

Feeds

表示方法

質問


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年以上 前 | 1 件の回答 | 0

1

回答

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

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

1年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0