How do I fix the following code?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Anuradha Bhattacharya
il 13 Feb 2015
Commentato: Anuradha Bhattacharya
il 13 Feb 2015
>> filename = load('proctrial_1.lvm'); >> timedata = filename(:,1); >> xvoltage = filename(:,2); >> plot(timedata,xvoltage) >> histplot = histogram(timedata, xvoltage); which gives an error, Undefined function 'histogram' for input arguments of type 'double'.
0 Commenti
Risposta accettata
Michael Haderlein
il 13 Feb 2015
The function's name is "hist" for plotting and "histc" for only getting the values.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Histograms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!