Community Profile

photo

sindre Røyland


2015년부터 활동

Followers: 0   Following: 0

통계

  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


change x axis, i have a plot of data from a headset. then i have 5 lines from a game, so i want 0-time from start(green) line till the end(red line), is it possible?
plot(data(2:end,3),data(2:end,1)); hold on; plot(data(2:end,3),data(2:end,2), 'k'); plot([Start Start],[0 1],...

거의 9년 전 | 답변 수: 2 | 0

2

답변

답변 있음
i have a matrix (10,2), but when im using find(isnan) on this it becomes (1,10) can someone tell me why? i delet 10 of the nans
found it myself using a(isnan(a(:,1)),:) = []; and not a(find(isnan(a))) = [];

대략 9년 전 | 0

| 수락됨

질문


i have a matrix (10,2), but when im using find(isnan) on this it becomes (1,10) can someone tell me why? i delet 10 of the nans
a = ones(10,2)*nan b = 1:5; a(b,1) = b; a(b,2) = b; a(find(isnan(a))) = [];

대략 9년 전 | 답변 수: 1 | 0

1

답변

질문


can i change the x axis without changing the plot? So i have a array with 10000 numbers in it, i want to plot thoes 10000 numbers in time, like 0-10sec insted of 0-10000.
buf = ones(10000,1)*nan; i = 1; x = rand(10000,1); for i <= 10000 buf(i,1) = x i = i+1; end plot(buf)

대략 9년 전 | 답변 수: 1 | 0

1

답변

질문


How can i save the random numbers in one array/string? I have similar problem, so this is just an example. Don't know how to explaine the other one
for i = 1:10 rand() end %is coming 10 random numbers ans = 1, ans = 7 ans = 4 osv.

대략 9년 전 | 답변 수: 1 | 0

1

답변