A répondu
How to convolve a 3D matrix along one of its dimension?
The function smoothdata must be applicable, like: % Sample data A = rand(100, 100, 2000); % Gaussian filter window win = 1...

plus d'un an il y a | 1

A répondu
This file format i want to extract time and Value. What should I do??
How about the following? % Read and arange the data url = 'https://jp.mathworks.com/matlabcentral/answers/uploaded_files/97604...

plus d'un an il y a | 1

A répondu
フォルダー内の画像のlab値を読み取り,それぞれの値を変数l,a,bに代入する.
以下のような処理のイメージでしょうか? % フォルダー内の画像を読み取る. I = imread('peppers.png'); % 画像のlab値を読み取る. Ilab = rgb2lab(I); % 変数l,a,bを定義し,画像のla...

plus d'un an il y a | 0

| A accepté

A répondu
行列の各行に対してラベル付け
グラフ理論を使う方法はどうでしょうか? 配列Aの各要素をノード番号、各行をエッジとみなすと、配列からグラフGを構成することができます。 すると、「求めたいラベル番号」は「エッジが属するサブグラフの番号」と等価になります。 言葉だけでは分かりにくいと思...

plus d'un an il y a | 2

| A accepté

A répondu
BPSK modulatorブロックの搬送周波数について
おそらく BPSK Modulator Baseband ブロックに関するご質問かと思いますが、このブロックは名称のとおりベースバンド信号を生成します。このため、ある搬送波周波数 [Hz] のBPSK信号を生成するには、このブロックの出力を別途 でアッ...

plus d'un an il y a | 0

| A accepté

A répondu
Vector to Indicate if Data equals the Maximum by group
How about the following? data = [1;2;3;6;5]; group = [1;1;2;3;3]; idx = splitapply(@(x) {x == max(x)},data,group); idx = c...

plus d'un an il y a | 1

| A accepté

A répondu
2つ以上の同じ要素を持つ列を削除
arrayfun 使った別の方法: % 配列の一例 (行・列数は任意) A = [... 1 2 3 4 5;... 2 3 4 4 6;... % -> 削除 7 5 5 5 2;... % -> 削除 0 9 7 8 1];...

plus d'un an il y a | 1

A répondu
Finding the value of the below curve
If you have a Signal Processing Toolbox, pulsewidth function will be a simple and effective solution.

plus d'un an il y a | 1

A répondu
finding the slope of each segement in a fitted curve
By applying interpolation, you can decrease and, as a result, the deviation will be more accurate. The following is an example...

plus d'un an il y a | 2

A répondu
Plot summation series | For Loop | Creep Strain
How about the following? s = 100; % constant tensile stress, (MPa) t = linspace(0, 10000)'; % duration of applied stress on sp...

plus d'un an il y a | 0

A répondu
構造体から特定のデータを抜き出す方法
関数 structfun をうまく使うと、ID = true の要素だけを抽出した構造体 t01_ver1 を作成することができます(下記 Solution 1)。 ただ、このようなデータであればテーブル型変数にしたほうが扱いやすいと思いますので、テーブ...

plus d'un an il y a | 0

A répondu
Finding the number of edges per each node in a graph
Please reffer to the degree function.

plus d'un an il y a | 0

| A accepté

A répondu
Convert a table vector of 31 by 13 elements to matrix of 13 by 31.
How about the following solution? % Read data file L = readlines('https://jp.mathworks.com/matlabcentral/answers/uploaded_file...

plus d'un an il y a | 0

| A accepté

A répondu
Inserting a column of repeated values
How about the following method? % Sample data load('outdoors.mat'); T = timetable2table(outdoors); T.Humidity([1, 6, 15]) = ...

plus d'un an il y a | 1

| A accepté

A répondu
Combination of DATA in arrange manner
How about the following? % Create D and E D = -0.02+0.0001*(0:70); E = 160:200; % Apply meshgrid function [xg, yg] = mesh...

plus d'un an il y a | 1

| A accepté

A répondu
Find out the cell index from matric values
How about using histcount2 ? The following is an example: % Sample data A = [... 0.7, 0.1;... 0.1, 0.2;... 0.8, 0.6;...

plus d'un an il y a | 0

| A accepté

A répondu
Best way to get rid of/ prevent function from creating complex numbers?
How about using isreal function?

plus d'un an il y a | 0

A répondu
Create all permutations of 1x13 vector used for Leave-p-out Cross-Validation
How about the following? Though this generates 78x11 (instead of 13x78 which you expected), the result contains all possible co...

presque 2 ans il y a | 0

A répondu
return value of [ ] for an 'if' or 'for' function
How about the following? function output = yourFunction(input) if isempty(input) output = 'unknown'; elseif isa(input,'n...

presque 2 ans il y a | 0

| A accepté

A répondu
How to speed up my code?
Avoiding for-loop will enhance computational efficiency. For example, the first for-loop: for i=1:n2 K(:,:,i)=M(:,:,i); en...

presque 2 ans il y a | 0

| A accepté

A répondu
How to use 'mkdir' command to make folders labelled as 1, 2, 3 till 100 using for loop in matlab code?
How about the following? rootFolder = 'E:\P2'; for kk = 1:100 subFolder = num2str(kk); folderPath = fullfile(rootFolde...

presque 2 ans il y a | 0

| A accepté

A répondu
How to calculate the number from a database
How about the following? List = arrayfun(@(x) x.country, TV,... 'UniformOutput', false); [Group, Country] = findgroups(Li...

presque 2 ans il y a | 1

| A accepté

A répondu
行列からある条件を満たした部分以降を抽出する方法
find 関数を使う下記の方法ではいかがでしょうか? % A の2列目が >= 1 となる最初の行番号を pt として取得 pt = find(A(:,2) >= 1, 1); % pt行目から最後までの行を配列 B として保存 B = A(p...

presque 2 ans il y a | 1

A répondu
Assign number to certain value in cell
How about using ismember function? Like: % Sample cell arrays A = {'As', 'C', 'H', 'N'}; B = {'As', 'As', 'N', 'N', 'H', 'H',...

environ 2 ans il y a | 0

A répondu
replacing numbers with alphabets/letters in a matrix
One possible straight-forward solution would be like this: M = readmatrix('testfile_0.50.xlsx'); C = cell(size(M)); idx = i...

environ 2 ans il y a | 0

| A accepté

A répondu
Assign partnames to two different tables with measurement datas
I wouold recommend using innerjoin or outerjoin functions for this kind of task.

environ 2 ans il y a | 0

A répondu
Is there an alternative to eval in a struct?
I believe it's better to arrange the data as a table rather than the deeply nested structure. How about the following? subject ...

environ 2 ans il y a | 1

A répondu
Need help asking for an input sentence
To input a text, you should use 's' option, like: N = input('what is N?: ') A = input('give me a sentence!: ','s');

environ 2 ans il y a | 0

A répondu
MATLABのウィンドウの長さとは、何を意味しているのでしょうか。
以下の説明が参考になるかと思います。 https://jp.mathworks.com/help/reinforcement-learning/ref/rltrainingoptions.html#mw_9b790efc-2a22-481b-a5f9-1...

environ 2 ans il y a | 0

| A accepté

A répondu
Storage results in an array
Instead of uisng for-loop, you can do this task by vectorizing, like: x = [2, 3, 4, 5, 6]; y = x + 2; idx = x > 4; y(idx) = ...

environ 2 ans il y a | 0

Charger plus