- 2,163
- 191
I have some datas from our physics experimetn and we have to plot them on matlab.Idk how to do them,I don't know how to write codes.Also I have to write of the axises and table names
The discussion revolves around plotting data using MATLAB, specifically in the context of a physics experiment involving charge and time measurements. Participants are seeking assistance with coding, graphing, and interpreting their experimental data.
There is no consensus on the best approach to plotting the data, as participants express varying levels of understanding and experience with MATLAB. Multiple competing views on how to proceed remain, particularly regarding coding and interpreting the experimental results.
Participants have not provided sufficient details about the specific data format or the types of graphs they wish to create, which limits the ability to offer targeted assistance. There are also unresolved questions about the experimental setup and the interpretation of the results.
I wrote codesbefore just I lost them and I don't remember...Drakkith said:If you have no programming experience and you've never used MATLAB before then it's very, very difficult to help you without literally writing your code for you.
Do you have any group members who are familiar with MatLab? If not, then I highly recommend talking to your teacher about this.
thanks seems usefulllewando said:You have some self-study to do then.
https://www.mathworks.com/help/matlab/getting-started-with-matlab.html
https://www.mathworks.com/help/matlab/ref/plot.html
X=[0:0.1:10];
Y=X.*X;
plot(X,Y);
Drakkith said:You haven't really given us enough information to be able to help you. We have no idea what kind of graph you want, what kind of data you have, what experiments you've done, etc.