sindre Røyland
自 2015 起处于活动状态
Followers: 0 Following: 0
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 years 前 | 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))) = [];
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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 1 个回答 | 0