フィルターのクリア

store the result of one row for 100 iterations to a matrix

1 回表示 (過去 30 日間)
HASAN AL-KAF
HASAN AL-KAF 2017 年 10 月 28 日
回答済み: Walter Roberson 2017 年 10 月 28 日
HI i have this function which is sub main function. if i have 100 iterations in my main function that call my sub main function. i want code to store the FeatIndex matrix which is random values to store in a matrix for all the iteration so i can know what are theses random values in FeatIndex for 100 iterations.
function z=MinOne1111(x)
FeatIndex = randi([1 401],120,1)
x = x([FeatIndex],:);
z= x ;
end

採用された回答

Walter Roberson
Walter Roberson 2017 年 10 月 28 日
function [z, FeatIndex] = MinOne1111(x)
FeatIndex = randi([1 401],120,1)
x = x([FeatIndex],:);
z= x ;
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by