Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
a = 0; b = 0; c = 0;
配列/ベクトルを使用せずに 1 つのステートメントでこれを行うことはできますか?
関数を使ってみdealます。
deal
http://www.mathworks.com/help/matlab/ref/deal.html
[a,b,c] = deal(0,0,0);
他の方法もありますが、これは学ぶのに良い機能です。