why i am getting "Ambiguous property found while using line" error?

6 vues (au cours des 30 derniers jours)
Gowrishankar R
Gowrishankar R le 29 Jan 2016
Commenté : Gowrishankar R le 30 Jan 2016
i am trying to draw a line from the accelerometer data.. code is as shown below
[gx,gy,gz] = readAcc(accelerometer);
disp(gx);
line([0 gx],[0 0],'Color','r','LineWidth',2,'Marker','o');
but i am getting error as
Error using line
Ambiguous property found.
Object Name : line
Property Name : ''.
Error in vector (line 45)
line([0 gx],[0 0],'Color','r','LineWidth',2,'Marker','o');
what might be the cause and how to resolve this problem? it does not display any property name..

Réponse acceptée

Walter Roberson
Walter Roberson le 29 Jan 2016
Try the full
line('XData', [0 gx], 'YData', [0 0],'Color','r','LineWidth',2,'Marker','o');
  7 commentaires
Gowrishankar R
Gowrishankar R le 30 Jan 2016
That worked...thank you very much..
Gowrishankar R
Gowrishankar R le 30 Jan 2016
hello Walter Roberson, sorry for asking so many questions again and again, i am encountered another error.. i have 2 .m files readAcc.m and vector.m.. in command window if i type
[accData1 accData2 accData3]=readAcc(accelerometer)
i get as accData1 = 1.0100
accData2 = -0.0400
accData3 = -0.2700
but when i run vector.m file which has function call as [accData1 accData2 accData3] = readAcc(accelerometer); after that function call if put disp(accData1); i get as 51__ or something like that.. why is like that?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by