link data problem for a polar plot
1 次查看(过去 30 天)
显示 更早的评论
I am essentially using the example from the doc nearly verbatim and can't get this to work Master is a matrix that is continuously updating. The Only the Y value needs to change dynamically as the matrix changes. The X values are constant
Can someone tell me why this won't work I continue to get an error that says resolve ambiguity and when i try to select x and y it tells me its not a valid variable. This is taking place in a function not a script.
x = Master(:,1); % Angle
y = Master (:,2); % Rho
polarscatter(x,y,'*')
rlim([0 26]);
linkdata on
2 个评论
Walter Roberson
2016-11-4
Is the message as soon as you execute the linkdata on, or is it later?
Do you also happen to have x or y in the base workspace?
Is the function returning so the variables are going out of scope?
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!