Community Profile

photo

sp6038sy


Active since 2019

Followers: 0   Following: 0

Programming Languages:
Python

Statistics

All
  • Knowledgeable Level 1
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
ベクトル化を交えた組み合わせ計算の方法
変数の組み合わせを事前に計算し行列演算するのはどうでしょうか。 例) 多変数関数 の場合 syms A B Z; % 多変数関数 Z = A.*B; % 変数の組み合わせを計算 A = 1:3; B = 1:3; [A, B] =...

10 months ago | 1

Answered
I have a matrix given below. I want to count the number of sets of consecutive non zero values along each row. Detailed description and desired result given below
Another approach — I tried to find the number of continuous data by finding the start and end points of the continuous data. A...

10 months ago | 0

Answered
csvデータをfigure化し、その値の全体の割合描出について
難しく考えずに100以下になるデータの個数をカウントしてはどうでしょうか。 list = dir('*.csv'); figure; hold on counts = 0; % <<< for ii = 1:length(list) ...

10 months ago | 0

| accepted