Community Profile

photo

Zeynep Naz Kocabas


Last seen: 3 years ago Active since 2019

Statistics

All
  • Thankful Level 2
  • Thankful Level 1
  • Solver

View badges

Content Feed

View by

Question


Error on Matlab coder
function [nearest]=kdtree_search(data,K) numDP=size(data.X,1); P=data.X; DIM=size(data.X,2); nearest=zeros...

4 years ago | 0 answers | 0

0

answers

Question


Automation of the finding size and the number of variables which depends on that size
for i=1:numDP data.T{i}=eye(DIM); nearest=knnsearch(data.DataTree,P(i,:),'K',K+1); R{i}=zeros(DIM); for j=1:...

4 years ago | 1 answer | 0

1

answer

Question


How to arrange ascending order closest points in 1000 data set without using 'knnsearchtree'?
I have 1000 points which are consists in 3-D coordinates. How I can find for example first 500 closest points for every points? ...

4 years ago | 1 answer | 0

1

answer

Question


Transfering results form one function to another one
Hi, I am beginner with Matlab my question is how i can take values from one function to another one?

4 years ago | 1 answer | 0

1

answer

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

4 years ago