Respondida
For Loop answer into a vector
b = 10; d = 10; E = 207E9; p = -8000; I = (b*d^3)/12; l = 227; x = linspace(1,226,20); % not necessary, but good: y = ...

más de 4 años hace | 1

| aceptada

Respondida
Please Help, I am getting this error "Index in position 1 is invalid. Array indices must be positive integers or logical values."
If the result of calling rand is small (less than 1/255) then round(rand*255) will be 0, and 0 isn't a valid index. Consider us...

más de 4 años hace | 0

| aceptada

Respondida
How to use stackedplot on desired UIAxes at App Designer
A stackedplot doesn't go in an axes, it's 'equivalent' to an axes in the sense that it goes in a figure or panel or tab. You cou...

más de 4 años hace | 0

| aceptada

Respondida
How can I display a list box item as a string in a label in AppDesigner?
Yes this is possible. You can create a listbox, and a label, and assign a callback to the listbox that sets the label. In gener...

más de 4 años hace | 0

| aceptada

Respondida
discreate heatmap plot over an existing image
The difference here (I'm guessing) is that your overlay has a small number of pixels, but the overlay in the example has a numbe...

más de 4 años hace | 0

| aceptada

Respondida
How to add different range in x-axis plot?
You can't have a 'broken' x axis, but you can fake it in several ways, here are a couple. One way is to fake the ticks: clf;ho...

más de 4 años hace | 1

Respondida
Remove whitespace around exported (saved) figure via imwrite
If/when you upgrade to R2020a+ consider trying exportgraphics(gca, ...) which trims images nice and tight and may be easier than...

más de 4 años hace | 0

| aceptada

Respondida
How to plot animated graph from a matrix of data?
In some sense, you are going to need to plot each row and capture each frame, as you want each frame of the movie to contain new...

más de 4 años hace | 0

Respondida
How to plot three subplots on the same axis?
There are a few options better than subplot. The easiest thing (as @Mathieu NOE mentions in the comments) is to use stackedplo...

más de 4 años hace | 5

| aceptada

Respondida
Is it possible to colour a scatter3 according to its mean and maximum value
You can color the points in a scatter3 by passing in a vector specifying the value you'd like to map onto color as the 5th argum...

más de 4 años hace | 0

Respondida
Trying to retrieve and display the initial value of an input
I think you just flipped it, if you want to set a equal to the initial value of x0, do a=x0 demo(5,10) function demo(x0,x...

más de 4 años hace | 1

| aceptada

Respondida
How can I graph an average and individual participant data?
It's a little difficult to visualize what this looks like, but here's what i took away from looking at your code you have a thi...

más de 4 años hace | 0

Respondida
scatter not ploting matrix
Yes this functionality was just recently introduced in R2021a The relevant section from the release notes reads: Scatter Plo...

más de 4 años hace | 0

| aceptada

Respondida
Why do I receive "Index exceeds the number of array elements (1)" ?
You wrote: For some background, m and t are both defined already in my workplace and they are both vectors. But you redefine...

más de 4 años hace | 0

Respondida
Drawing a line to divide two parts of a curve
You can draw a vertical line very easily with xline area works well for filling a part of the curve x=linspace(-3,3,100); y...

más de 4 años hace | 0

Respondida
51 uniformly-distributed points
You can create uniformly (linearly) distributed values with the linspace function: x = linspace(0, 5, 51) Alternatively, you m...

más de 4 años hace | 0

| aceptada

Respondida
array indexing returns empty row vector while attempting to locate index corresponding to only certain array values
This is an issue of floating point arithmetic, another way to state the problem is: (.1+.2)==.3 What? How can those not be equ...

más de 4 años hace | 0

| aceptada

Respondida
Dealing with Data Structures
I think in general it's better if your struct is an array rather than using names of fields in the struct as an array, but if yo...

más de 4 años hace | 0

Respondida
Nested for loop for multipication
I think the question is really how you store your total values (you didn't store them in your snippet, so I'm not sure how you p...

más de 4 años hace | 0

| aceptada

Respondida
fill missing point in data (x y z 3 columns data)
You can use meshgrid to make x and y grids, and then ismember with the rows flag to find which pairs of x and y are missing: % ...

más de 4 años hace | 0

Respondida
How to locate the plotting title above the legend, where the legend is placed "northoutside"?
You can put a title on the legend, but I think you just want a master title for everything. You can do that by placing your axes...

más de 4 años hace | 2

| aceptada

Respondida
How to relate data to other data from excel in MatLab?
In general, it's better to think of it not as Height(Name1), but as Height(Species=="Name 1"), this extends to all sorts of data...

más de 4 años hace | 0

Respondida
How do I use output values from a function to plot those values in a script
I think what you're looking for is: [t,~,v] = rocket_euler(30,20) plot(t, v, '.-','color',[0 1 0],'Marker','x','markersize',15...

más de 4 años hace | 0

| aceptada

Respondida
select one item between two List Box
How about just using the callback of one to deselect the other: % Set up some example listboxes: u = uifigure; lsta = uilistb...

más de 4 años hace | 0

| aceptada

Respondida
graph with two formulas
You can make the error bars with the errorbar function, but your excel file doesn't appear to include data about error... a=r...

más de 4 años hace | 1

Respondida
Call Function from .m file in command
@L McKeehan - perhaps the most common reason for this is that the function is not on MATLAB's search path. When you try to run a...

más de 4 años hace | 1

| aceptada

Respondida
What should be the distance between the two cameras?
This isn't a very MATLAB-y answer, but the lenses in stereo cameras typically try to replicate the distance between the eyes (ac...

más de 4 años hace | 0

Respondida
Trying to change columns in a Matrix
Specifying rows and columns makes MATLAB point to rectangles: a(1:2,1:4) refers to rows 1 and 2, columns 1 through 4, i.e. MATLA...

más de 4 años hace | 1

| aceptada

Respondida
Showing the equation of the best fit lines per graph
Are you struggling with how to get the text? or how to display it on the chart? Here I put them in the legend, and also added...

más de 4 años hace | 0

| aceptada

Respondida
Get ticks to lay across colorbar
The unit for TickLength is peculiar. If you check out how it's documented on the colorbar page it says: Tick mark length, speci...

más de 4 años hace | 0

| aceptada

Cargar más