Plotting 1402 data points for a voltammogram

1 回表示 (過去 30 日間)
Chelsea Perkins
Chelsea Perkins 2019 年 2 月 17 日
コメント済み: Star Strider 2019 年 2 月 17 日
I'm trying to plot 1402 points but when i try 'plot(x,y)' it says I have too many input arguments and when I try to plot a scatter plot it says that line 56 has word, but it doesn't. Please help

回答 (1 件)

Star Strider
Star Strider 2019 年 2 月 17 日
... when i try 'plot(x,y)' it says I have too many input arguments ..
You probably have a variable (or your own function) that you named ‘plot’. This is called overshadowing a MATLAB function, and is best absolutely avoided.
To find out what the problem is, type this in your Command Window or a script, then run it:
which plot -all
All of them should share something similar to this path: 'C:\Program Files\MATLAB\R2018b\toolbox\matlab\ ...'
If the first result is:
plot is a variable.
You have found the problem. You then have to go through your code to find out where it is, and change the name.
  2 件のコメント
Chelsea Perkins
Chelsea Perkins 2019 年 2 月 17 日
when i do that it says "not enough input arguments"
Star Strider
Star Strider 2019 年 2 月 17 日
‘... it says "not enough input arguments"’ when you do what?
The which call, as I described it, should not throw any errors.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by