i have problem . how to i set the x axis into hour. i have 10080 data and each one represents one minute of data. i want to represents x axis with 24 hour, how can I make like that…
Ask an expert. Trust the answer.
Academic and engineering questions answered by verified MATLAB professionals.
i have problem . how to i set the x axis into hour. i have 10080 data and each one represents one minute of data. i want to represents x axis with 24 hour, how can I make like that…
I am trying to get a random vector (2D) of the same length, say 'x'. I thought about creating a list of numbers -1 to 1 for x values and then another one for from 1 to -1 for y val…
Hello everyone, I have a simple for loop to plot 7 different plots, but the ylabel should be different. for k=1:7; figure bar(GAMMA_sta(k,:)) xlabel('Rock Types'); title( [ 'Sta…
I have constructed a xyscatter plot in excel using activex from matlab code but cant figure out how to dimension it. Here is the code that I have: Workbooks = Excel.Workbooks; Work…
Hello!! I am plotting an easy sin function but I dont understand why when the variable delta is 0.2 0.4 0.6 and so on I get a perfect sin, but on the other hand when I plot it with…
I'm making a program with a GUI and I need to plot some functions, but I want to plot it in different windows and I want that those windows have all the menus and options that has …
, This question has a few parts so bare with me if it seems confused, I'll try my best to be clear. My problem is this, I want to plot 11 lines in different colours on the same gra…
Hi, I want to put eleven plots in the same graph but separately i. e. all them will be in same x axis but in different scales in the y axis. For example: first graphic starts in 0 …
Some background info: I've been using the following two commands to make plots transparent: set(gcf,'color','none'); set(gca,'color','none'); and then using export_fig to export…
If a = [1 2 3 4 5 6 7]; and b = [1 4 7 10 7 4 1]; and the plot it by : figure,plot(a,b), how can I draw let's say a red line vertical to the value 3 and 5 in the x-axis? So that i …