error using plot()

2 Ansichten (letzte 30 Tage)
Krishnendu Mukherjee
Krishnendu Mukherjee am 2 Feb. 2012
Beantwortet: Massa Tolba am 18 Feb. 2021
h_MeanCostPlot=plot(MeanCost,'k:','LineWidth',1.5,'YDataSource','MeanCost');
im getting error while using this command in m-file.
is the syntax correct?
  2 Kommentare
Wayne King
Wayne King am 2 Feb. 2012
Please show the error message you are getting
Krishnendu Mukherjee
Krishnendu Mukherjee am 2 Feb. 2012
Error using ==> plot
Invalid line property: 'YDataSource'.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Wayne King
Wayne King am 2 Feb. 2012
Not sure why that is causing you a problem, (maybe a version problem), but try
h_MeanCostPlot=plot(MeanCost,'k:','LineWidth',1.5);
You should not need 'YDataSource' here unless you want to refreshdata()?
Does this work for you?
x = randn(100,1);
h = plot(x,'k:');
set(h,'YDataSource','x');
What version of MATLAB are you using?
  11 Kommentare
Krishnendu Mukherjee
Krishnendu Mukherjee am 2 Feb. 2012
if any ready file available only and only then i can installed that property.i myself cant make that function
Walter Roberson
Walter Roberson am 2 Feb. 2012
No, there is no download or toolbox that will add that property to MATLAB 6.5

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Massa Tolba
Massa Tolba am 18 Feb. 2021
Error in Q1 (line 9)
plot(i,A)
What should i do with this error

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by