Community Profile

photo

sindre Røyland


Aktiv seit 2015

Statistiken

  • Thankful Level 1

Abzeichen anzeigen

Content Feed

Anzeigen nach

Frage


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],...

fast 9 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
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))) = [];

fast 9 Jahre vor | 0

| akzeptiert

Frage


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))) = [];

fast 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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)

fast 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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.

etwa 9 Jahre vor | 1 Antwort | 0

1

Antwort