How to display histogram
38 次查看(过去 30 天)
显示 更早的评论
Cannot display the histogram. Basicly, I want to plot the data from CSV file. It worked on other csv file.
data = csvread('CorelationCoefficient_All.csv');
x = data(:,1);
histogram(x);
3 个评论
Mathieu NOE
2022-5-16
hello
It works ! (on my R2020b)
where is your issue ? what is the rror message ?
回答(1 个)
Yash
2024-8-28
Hello Azam,
I tried executing the given code with the provided CSV file. I am able to get the histogram as shown below:
There could be several reasons why you are facing this issue. Here are some possible suggestions to troubleshoot the problem:
1. File Path: Ensure that the path to the CSV file is correct. If the file is not in the current working directory, you should provide the full path to the file.
2. Outdated function: In the newer MATLAB releases, "csvread" is not recommended. You should consider using "readmatrix" or "readtable" instead. Please find the following relevant documentations:
- readmatrix: https://www.mathworks.com/help/matlab/ref/readmatrix.html
- readtable: https://www.mathworks.com/help/matlab/ref/readtable.html
3. Error Messages: Please check for any error messages in MATLAB’s command window. These messages can provide clues about what might be going wrong.
4. Permissions: Check if there are any permission issues with accessing the file.
If none of these suggestions resolve the issue, kindly provide more details about the error message or behavior you are encountering so that we can assist further.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!