Function that will select one of two data sets

조회 수: 3 (최근 30일)
Kevin Burg
Kevin Burg 2021년 6월 23일
답변: Image Analyst 2021년 6월 23일
I am trying to set up a function that will pick one of two data sets. If a set parameter is postive I want this to be from the first data set. If a set parameter is negative I want the second data set used. Here is basic structure of what I have so far but I do not think I have the logic correct.
function [ x y ] = donor( set_ind )
global vols sets
ind_first = sets.set_dat(set_ind).first;
ind_second = sets.set_dat(set_ind).second;
if z > 0
[ x y ] = ind_first;
elseif z < 0
[ x y ] = ind_second;
end
end

채택된 답변

Image Analyst
Image Analyst 2021년 6월 23일
Try
function [xy] = donor(setIndex)
global sets
if rand(1) > 0.5
xy = sets.set_dat(setIndex).first;
else
xy = sets.set_dat(setIndex).second;
end
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by