已回答
複数の比較対象に関してどのインデックスが一致しているかを知る方法
ismember 関数を使うと、簡単に見つけることができます。たとえばご質問の例ですと、以下のようになります。 A = 11:20; B = [11 12 14 14]; [~,loc] = ismember(B,A); >> loc loc =...

5 years 前 | 2

| 已接受

已回答
classify関数によって得られた確率をROC曲線の出力をすることは可能でしょうか?
classify 関数によって得られた確率(スコア)からROC曲線を出力をすることは可能です。そのためには、プログラムを若干修正する必要があります。 まず、perfcurve 関数への入力は、エラーメッセージにもあるように「スコアは浮動小数点のベクトルと...

5 years 前 | 4

| 已接受

已回答
How to subset a table and pass the variable names?
Instead of using T2 = T{Ind,:} (I believe TT{Ind,:} is typo and T{Ind,:} is correct), the following can extract the correspondin...

5 years 前 | 0

| 已接受

已回答
Change text to numbers in a cell
How about the following? B = replace(A,'text one','1'); B = cellfun(@str2double,B(:,1:end-1),'UniformOutput',false); A = [B,A...

5 years 前 | 1

| 已接受

已回答
How can ı creat poisson random variables?
You can generate random number by using poissonrnd function, like; lambda = 75; r = poissrnd(lambda); Or, if you want to gene...

5 years 前 | 0

| 已接受

已回答
How calculate daily, monthly, seasonally mean average and std?
I would recommend storing the data as timetable variable, and applying retime function. The following is an example: % Load da...

5 years 前 | 0

| 已接受

已回答
Monthly Average from Daily Data
Another way is to use groupsummary function. The following is an example (note that the follwing returns average value with nan...

5 years 前 | 0

已回答
離散点の流線の表示
さっそく対象データを提供頂き、ありがとうございます。 MATLABには流線をプロットするための関数として、streamline が用意されています。ただ、この関数は入力データがメッシュグリッドになっている必要があります。 頂いたデータを見ますと (x,...

5 years 前 | 1

| 已接受

已回答
How to normalize data of each row of Matrix A=[10 20 30 40;5 15 25 30]; between 0 and 1?
I believe you can do this task by simply applying normalize function, like: B = normalize(A,2,'range'); % Normalize each row to...

5 years 前 | 0

已回答
ライブスクリプトのFigureを外に出す
下記のように、"Visible" プロパティを "on" に指定することで、Figureウィンドウを別に表示させることができます。 figure("Visible","on")

5 years 前 | 3

| 已接受

已回答
make video to combine two png series from different file folder
How about the following solution? s = dir('*.png'); v = VideoWriter('output.avi'); open(v); for kk = 1:numel(s) fil...

5 years 前 | 0

| 已接受

已回答
Merge two files with different information
As Walter-san mentioned, the solution would be like this: % Read .txt files T1 = readtable('file1.txt','ReadVariableNames',fal...

5 years 前 | 0

已回答
extracting only number from text file
How about the following? % Read the original text file c = readcell('data.txt','Delimiter','\n'); % Extract coordinates fro...

5 years 前 | 0

| 已接受

已回答
for文とif文の併用
やりたい内容は、「条件 Y(k) <= sr & Y(k+1) >= sr を満たす点での dY/dX の値を計算し、結果を配列 C として保存したい」と理解しました(間違っていたらご指摘ください)。 以下の方法ではいかがでしょうか。ただし上記条件を満た...

5 years 前 | 1

已回答
Determine separated node in graph
I'm not sure what is the final goal and/or application of this process. But let me try to do this task (since this "puzzle" will...

5 years 前 | 0

| 已接受

已回答
how to create block circulant matrix?
How about the following? % For simple example n = 3; m = 2; % Create n-by-n circulant matrix B_block = gallery('circul',1...

5 years 前 | 0

| 已接受

已回答
Creating a matrix which contains submatrices
Assuming the submatrix is n-by-n Identity matrix, the solution would be like this: n = input('Please enter n: '); subMat = eye...

5 years 前 | 0

已回答
Merge two columns of same table into one
Assuming columns A and B are cell array of characters, how about the following? % Sample input table A = {'123';'234';'345'}; ...

5 years 前 | 0

| 已接受

已回答
plotを使用してグラフの色をデータに応じて変更する方法
以下のように、グラフオブジェクトを構築・可視化する方法はいかがでしょうか? % データ点の(x,y)座標 x = [1,5,10,20]; y = [1,4,5,10]; % Edgeの始点(s),終点(t),重み(w) % ※注:組み合わせ...

5 years 前 | 1

| 已接受

已回答
How to filter tables in the cell?
How about the following? C_Winter = cellfun(@(x) x(strcmp(x.season,'Winter'),:),C,'UniformOutput',false); The same solution wi...

5 years 前 | 1

| 已接受

已回答
How to plot binary sine function?
How about modulating a phase with 0 <-> pi ? The following is an example: T = 3; time = linspace(0,T*4,1000); % Create a p...

5 years 前 | 0

| 已接受

已回答
Box plotのボックス内の色を変更する方法
R2020aでMATLABの基本関数に追加されたboxchartを使うのはいかがでしょうか? たとえば以下のようにすると、Box内と外れ値のマーカー色をグレーに指定することができます。 figure boxchart(x,'BoxFaceColor'...

5 years 前 | 1

| 已接受

已回答
make one part of a function repeat it self in diffrent sections of time line.
If you have a Signal Processing Toolbox, you can simply use sawtooth function, like: % Generate signal t = linspace(-4*pi,4*pi...

5 years 前 | 0

已回答
How to Measuring Peak Widths
I believe findpeaks function can do that task. The following is an example: % Load sample data load sunsplot.dat; % Define ...

5 years 前 | 0

| 已接受

已回答
How to plot contur in 3 D
OK. Then, how about the following? % Read all the data in the Excel file T = table(); for kk = 1:8 Ttmp = readtable('Conto...

5 years 前 | 0

已回答
Comparing numerical values of a 5x2 cell
I would recommend storing your data as a table variable before processing, like: % Data ca = { 'Red Car', 50; 'Blue Car', 45...

5 years 前 | 0

已回答
extracting index number if an item exist in some columns while not in the rest columns
OK. Then, the solution would be like this: % Sample table Name = {'David','Bowie','Lynch','Mirewuti','Muhetaer','Akira','Agata...

5 years 前 | 1

| 已接受

已回答
How do I find the column of maximum values of a maxtrix?
If you want to find the column where the maximum value in 2D matrix locates, one simple way is: [~,col] = max(max(x)); For exa...

5 years 前 | 0

| 已接受

已回答
defining a polygon area within an array
How about the following solution? % 100-by-100 sample matrix Zin = peaks(100); Zin = Zin - min(Zin(:)); % Example of polyg...

5 years 前 | 1

已回答
hwo can i do this image that shades from white at the image edges to black in the image centre
I believe you can do this more efficiently. The following is an example: % Set image size imSize = 100; % Make a left-top p...

5 years 前 | 2

加载更多