Beantwortet
Add missing rows to the table without loop
Like this? % Original table Tbefore = array2table([0 25 12 12 0.08; 0 33 1 1 0.0051],... 'VariableNames',{'time','radius','...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
time series fatigue test
How about the following? N = [1000 , 500 , 2000 , 300 , 700 , 1000]; % No of samples NI = length(N); y_min = 10 + (60-10)*r...

mehr als 6 Jahre vor | 0

Beantwortet
Plotting an array of string as X-axis and an array of numbers as y-axis?
Assuming your data was stored in the attached format, I think there should be at least following 2 solutions: % Read data data...

mehr als 6 Jahre vor | 0

Beantwortet
How can I edit a value in multiple text files?
I believe it's better to keep the original files and save the revised files to a different folder. How about the following? In...

mehr als 6 Jahre vor | 0

Beantwortet
Adding two arrays of different sizes together evenly without messing cumulative sum.
Based on the question, C should be a cumulative result starting from 0. So, it should be: C = A + linspace(0,B,length(A));

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
grouping numbers in matrix
More generalized solution would be: C = splitapply(@(x){x'}, B, A); If each group has the same number of elements, the followi...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
how to multiply a number in even rows of matrix?
Please try the following: output2(:,2:2:end) = 2;

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
4d plot in order to create a surface with density from 4 vectors ( coordinates of the dots). X, Y, Z and C is the color.
OK. Then, how about the following? % Load data load('object.mat') % Create meshgrid [xq, yq, zq] = meshgrid(min(x):5:max(x...

mehr als 6 Jahre vor | 2

| akzeptiert

Beantwortet
4d plot in order to create a surface with density from 4 vectors ( coordinates of the dots). X, Y, Z and C is the color.
How about simply using scatter3 function, like: load('object.mat') figure scatter3(x,y,z,[],c,'.') colorbar

mehr als 6 Jahre vor | 1

Beantwortet
regionpropsの応用について。
bwboundaries 関数を使うのはいかがでしょうか? たとえば以下のようにオブジェクトの境界をトレースできます。 % Sample binary image I = imread('toyobjects.png'); BW = ~imbina...

mehr als 6 Jahre vor | 2

| akzeptiert

Beantwortet
ignore or delete number or row has been multiply defined?
Simple solution will be: result = unique(yourArray); If you want to keep element's order, please try the following: [~, ia] =...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Timetable Monthly Average over Many Years
Looking at your csv data, some additional options will be needed. (1) To specify the delimiter in your csv data, 'Delimiter' op...

mehr als 6 Jahre vor | 1

Beantwortet
change numbering inside cell
Solution 1: c_new = cell(size(c)); for kk = 1:numel(c) c_new{kk} = interp1(B(:,2),B(:,1),c{kk}); end Solution 2: % "...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Extract integer number from a cell array.
If my understanding is correct, you are trying to extract numbers just after 'BUS'. If so, how about the following? % Original...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Graph each side of the equation
How about using fzero function? The following is an example: % fnc = (left side) - (right side) fnc = @(x) 4.231*x - exp(-0.17...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
How can I set a descend order finding peaks to my graph ?
How about combining envelope and findpeaks functions? The following is an example. % Load data load('signal.mat'); load('t.m...

mehr als 6 Jahre vor | 2

| akzeptiert

Beantwortet
How to take monthly flow data and obtain annual max flow values
Assuming your data was stored in 972-by-2 matrix yourData, following code can do your task. year = repelem([1:81]',12,1); year...

mehr als 6 Jahre vor | 0

Beantwortet
Remove the border lines.
How about using surf function with 'FaceColor' = 'interp' option, instead. Here is an example. figure surf(xx1,yy1,z1,'FaceCo...

mehr als 6 Jahre vor | 1

Beantwortet
how to count daily events from a time series data
How about the following? % Read your text data file T = readtable('test.txt'); % Create datetime vector Time = datetime(T....

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Extracting coordinates values for the line.
How about the following? % Load data and convert to gray-scale image load('v.mat'); Igray = mat2gray(v); % Apply multileve...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Kmeans (Initialise centroids)
Like this? % Apply k-means clustering to data set X (e.g num of classes = 2), and obtain centroids C numClass = 2; [cluster,C...

mehr als 6 Jahre vor | 0

Beantwortet
plotを使った四分木分割をしたいです。
Image Processing Toolboxの関数 qtdecomp を使うのはいかがでしょうか。 以下はその一例です。 % 与えられた(x,y)座標が1(他は0)の16x16配列Iを作成 a = [2 2; 7 2; 3 7; 6 6; 8 9...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
connect median in a boxplot
Like this? % Sample data Data = randn(100,10); % Calculate median for each column med = median(Data); % Visualize the r...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
Return index of datetime column in a table
If your HData.Time column is string: % index of zero seconds idx_s = cellfun(@(x) ~isempty(x),regexp(HData.Time,'00$','match')...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
surf plot from text file
Like this? data = dlmread('exportfilecst4.txt'); x = data(:,1); y = data(:,2); z = data(:,6); figure surf(reshape(x,31...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
retime only for specific gaps on time
How about the following solution? % Sample timetable with 2 gaps (e.g >1 hour) Time = datetime('now') + minutes(cumsum(45*rand...

mehr als 6 Jahre vor | 2

| akzeptiert

Beantwortet
How to assign points to multiple polygons using inpolygon
Looking at your data, one of the Points is outside of the convex hull of polygon A's coordinates. So "inpolygon" function will n...

mehr als 6 Jahre vor | 0

Beantwortet
三角形膜要素の分布図(任意の(x,y)座標で)を作成したいのですが、方法はありませんでしょうか。
ご説明ありがとうございます。おおよそ理解しました。 まず、任意の (x,y) 座​標に対して何らかの値 z (例えば関数 z = f(x,y) の出力値)があったとして、それらの隣接する点どうしを三角形で結んで3次元曲面として表示するには、以下のようにす...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
How can I convert multiple images (all the same size) into one matrix?
To create image dataset for training a neural network, imageDatastore should be an easy and promissing way. So I would recommend...

mehr als 6 Jahre vor | 0

Beantwortet
How to stretch matrix
Not so sophisticated, but intuitively clear way: y = repelem(x,2); y(2:2:end) = y(2:2:end)+1;

mehr als 6 Jahre vor | 1

Mehr laden