Effacer les filtres
Effacer les filtres

new in matlab, first question

3 vues (au cours des 30 derniers jours)
googo
googo le 20 Mar 2013
hey, i'm trying to take a sample from a raw vector using myRandPerm. i had started in the folowing way:
function s=sample(x,n,seed)
if n>length(x)
-1
else
{don't know how exactly i can get myrandperm selecting n numbers from the x vector}
end
end
thank you...
  2 commentaires
Dani Tormo
Dani Tormo le 20 Mar 2013
Modifié(e) : Dani Tormo le 20 Mar 2013
Try to format the code for an ease reading. You have more info on the Help button up here.
Jan
Jan le 21 Mar 2013
Modifié(e) : Jan le 21 Mar 2013
What is your reason to implement myRandPerm instead of using the builtin randperm function?
The tags are used to classify the questions. Therefore "matlab" is not useful, because all questions concerns this topic. "randperm" would be much better.

Connectez-vous pour commenter.

Réponses (2)

Sean de Wolski
Sean de Wolski le 20 Mar 2013
Welcome!
You can use randperm
doc randperm
or do what randperm() does under the hood:
[~,idx] = sort(rand(1,10))
  2 commentaires
googo
googo le 20 Mar 2013
thanks but what do you mean by doc randperm?
Sean de Wolski
Sean de Wolski le 20 Mar 2013
At the MATLAB command prompt run:
>> doc randperm
It will bring up the documentation. FYI: In this forum, gray text like that represents code to be executed.

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 21 Mar 2013
From the help:
p = randperm(n,k) returns a row vector containing k unique integers selected randomly from 1 to n inclusive.
So
x = rand(1,20) % Generate sample data.
n = 5; % Take 5 from x at random locations
% Get the random locations.
xIndexes = randperm(numel(x), n);
% Extract x from those random locations.
xSubSample = x(xIndexes)

Catégories

En savoir plus sur Text Data Preparation dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by