photo

Keita Abe


Last seen: 1 year ago Active since 2022

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

1 Question
5 Answers

Cody

0 Problems
194 Solutions

RANK
3,308
of 300,611

REPUTATION
17

CONTRIBUTIONS
1 Question
5 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
5

RANK
 of 21,028

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
733
of 169,811

CONTRIBUTIONS
0 Problems
194 Solutions

SCORE
2,848

NUMBER OF BADGES
17

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Cody 10th Anniversary 10-Day Streak
  • Knowledgeable Level 1
  • CUP Challenge Master
  • First Answer
  • Commenter
  • Introduction to MATLAB Master
  • Promoter
  • Cody Problems in Japanese Master
  • Community Group Solver
  • Solver

View badges

Feeds

View by

Answered
10×10の三重対角行列のfor文を利用した作り方について
for文を使わない方法ではダメですか? diag という関数を使うと簡単にできそうでした。 対角行列の作成と行列の対角要素の取得 - MATLAB diag - MathWorks 日本 v = 4*ones(1,10); v1 = -1*ones...

3 years ago | 3

Question


配列の1つの要素だけをスカラーとして変数に直接代入したい
代入式の右辺の配列の1つの要素だけを指定して直接左辺の変数に代入するにはどうすればできるでしょうか? たとえば次のようなコードを書いた場合,一旦行列の変数(B)を介しているのでそれを省いて直接A(i)=(rand(3)^(i)*rand(3,1),1)の...

3 years ago | 0 answers | 1

0

answers

Answered
for文で連続する数字から変数を定義したい
配列でname(i)を定義するのではなく変数名自体に連番を振るにはevalを使えばできるみたいです。(推奨されないそうですが) https://jp.mathworks.com/matlabcentral/answers/1729850-for?s_ti...

3 years ago | 0

| accepted

Answered
座標の範囲や、label、凡例の固定
例えばこんな感じでforループの前に設定を入れるのではどうでしょうか? グラフィックス オブジェクトのアニメーション化 - MATLAB & Simulink - MathWorks 日本 theta = linspace(-pi,pi,500); ...

3 years ago | 0

Answered
CSVファイルの時系列演算
最も愚直に書くとすれば以下のようにデータ取得に対してfor ループを回せばできますね。 clc;clear; Pathlists = dir("*.csv"); Mylists = (struct2cell(Pathlists))'; Myli...

3 years ago | 0

| accepted

Answered
Matlab plot 4D data
I found that two points for reconsindering meshgrid function requires unique array of x, y, z. surf function requires the surf...

3 years ago | 1