回答済み
Problem in plotting the string variable
Matlab only labels tick marks that exist (about every 5 "units" in this case). Make to make the ticks every mark, use the xTick ...

4年以上 前 | 0

回答済み
How can I get rid of the white lines caused due to rendering issues?
There is a tool to clean this up: https://github.com/Conclusio/matlab-epsclean See discussion about this issue here: https...

4年以上 前 | 1

回答済み
ERROR using plot. Vectors must be same lenght.
you appear to have two errors on that plot line: 1) ab_sym is a symbolic expression - did you mean to exclude this? 2) what ...

4年以上 前 | 0

| 採用済み

回答済み
Removing invalid results knowing the trend
From what you say, it sounds like your valid rule is that if the reported angle is invalid if it is less than the previous value...

4年以上 前 | 0

| 採用済み

回答済み
running matrix in a loop to produce another matrix
This code will loop over each row of Z and put the results into w. I'm not sure what you want to do with each row. z = [1 1 ...

4年以上 前 | 0

| 採用済み

回答済み
Plotting geo track over a map
you can use plotm to plot lat,long data onto a map axis. But there is a file exchange file that is optimized for plotting data ...

4年以上 前 | 1

回答済み
Using maximum of optimisation variable as an upper bound for another variable
you can do a bounded obtimization using this file from filecentral: fminsearchbnd

4年以上 前 | 0

回答済み
extraction of text region in an image
Matlab OCR does this See: OCR ref

4年以上 前 | 0

回答済み
ODE Error: "Array indices must be positive integers or logical values"
You are calling bdipuniodefun(t,s) with s having values of 0 (values from icv). Your program then attempts to index to the "0" e...

4年以上 前 | 0

回答済み
I want to solve multivariable equation
This is how you would sove this: syms x y r a b eqn =(x/y*((1+(r-1)/2*y^2)/(1+(r-1)/2*x^2))^((r+1)/2*(r-1))) == a/b sol...

4年以上 前 | 0

回答済み
Saving matrices inside a loop for each iteration
You are not preallocating those variables. If you do that, you will get a significant increase in speed. In some situations, I h...

4年以上 前 | 0

回答済み
How to plot data samples in three dimensions?
you can use plot3. Let the row be y, time be x, and n be z. You will get a plot, but it won't be nice like what you show, as a r...

4年以上 前 | 0

回答済み
How can I generate an array that keeps all the values related to specific indices keeps the zero as reference value?
The following code does what you want for the values you gave as examples hope this helps, --ted y=[2 1 3 5 4] x=[ -2 -1 0 1...

4年以上 前 | 0

| 採用済み

回答済み
HI, I have a question regarding histogram plots in matlab
Yes, use the optional edged arguement of histogram. you can see more here: histogram doc edges = [1:9 10]; h = histogram(...

4年以上 前 | 0

| 採用済み

回答済み
Passing in a function as an argument
you use the "@" character to pass a function, not the output of a funcitn. This looks like this: function main clc testCode...

4年以上 前 | 8

回答済み
How to calculate the middle point between two points on the Earth in matlab?
There is a built in function in the matlab mapping toolbox that does what I think you are looking for: meanm Mean location of...

4年以上 前 | 2

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

5年弱 前

解決済み


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

5年弱 前

回答済み
Spikes when saving matlab figure as pdf
This is a MATLAB bug, and has been happening for a few years. It drives me crazy. For some discussion on this, and a workaround,...

5年以上 前 | 1

回答済み
how to draw multiple patches with different number of vertices?
Sometimes when I run into this class of problem, I find that the polyshape tool is the answer. For example, if I want to plot tw...

5年以上 前 | 0

回答済み
I need to calculate lat and long for other point. Given one lat long and bearing.
The Matlab function <https://www.mathworks.com/help/map/ref/reckon.html reckon> is what you are looking for. For plotting the tr...

5年以上 前 | 1

回答済み
How do I add commas to numbers using fprintf?
you can do this in two lines. from <https://www.mathworks.com/matlabcentral/answers/96131-is-there-a-format-in-matlab-to-display...

6年弱 前 | 9

回答済み
Is there a format in MATLAB to display numbers such that commas are automatically inserted into the display?
A simple way is to add this two line function: function numOut = addComma(numIn) jf=java.text.DecimalFormat; % comma ...

6年弱 前 | 17

回答済み
how do i make a full text area scroll up when i add more text?
I had the exact same issue. My crude work around was to add the new text to the start rather than the end of the text block. As ...

6年弱 前 | 1

解決済み


How to subtract?
*&plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn* * Imagine you need to subtract one...

6年以上 前

解決済み


Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
Submit your answer to this problem a multiple of 5 seconds after the hour. Your answer is irrelevant; the only thing that matte...

6年以上 前