Answered
How to plot a quadratic equation?
Hello, If you have a newer release of Matlab (I believe R2016b), you can use the new <https://www.mathworks.com/help/matlab/r...

7 years ago | 4

| accepted

Answered
Find the euclidean distance between elements of two matrices, one element of first one from all elements of the second one.
Hello, You could do this using the distance formula, or the built in <https://www.mathworks.com/help/stats/pdist2.html pdist2...

7 years ago | 2

| accepted

Answered
how to add multiple y-axis point on my plot?
Hello, To have two different y-axis (on left and right sides), you can use one of two functions depending on which MATLAB rel...

7 years ago | 0

Answered
change equal values in a column to nan
Hello, Try this: % Given matrix A for i = 1:size(A,2) % go through each column for j = 2:size(A,1) % through el...

7 years ago | 1

| accepted

Submitted


Pacman (with a twist)!
This is a play off Pacman - type help Macpan to see details.

7 years ago | 1 download |

Thumbnail

Question


How to Edit File Information in MATLAB File Exchange?
Hello, After briefly searching for a method, I was unable to find a way to edit the file information that goes along with a f...

7 years ago | 2 answers | 0

2

answers

Answered
Hi Guys I need help. I need to get user input of a postfix expression and then evaluate the expression. But, I am having trouble in storing the postfix expression in a variable and then to read it by one character at a time.
Hello, If I was to solve this problem and I had, a = '123*+'; I would parse the data as follows (perhaps think of a b...

7 years ago | 1

| accepted

Answered
How do I find only the small peaks in the signal?
Hello, I would recommend using simple high and low pass filters to acquire the smaller peaks. In other words, filter out d...

7 years ago | 1

Answered
Error when using ode45 command,"returns a vector of length 11, but the length of initial conditions vector is 1."
Hello, The way the ode45 command works (as I'm sure you know) is that given a state vector, in your case w, you provide a fun...

7 years ago | 1

| accepted

Answered
How to rotate points on 2D coordinate systems
Hello, You can rotate your points with a <https://en.wikipedia.org/wiki/Rotation_matrix rotation matrix>: Here's a simple ...

7 years ago | 9

| accepted

Answered
How to insert NaN at the end of matrix (.mat)
Hello, Would it be sufficient to: load('your_file.mat') Matrix_Name = [Matrix_Name; NaN NaN]; % Get rid of extra...

7 years ago | 0

| accepted

Answered
How can I plot the square root of normally distributed data?
Hello, The problem is that transforming data with a square root does not necessarily maintain the normal distribution, this i...

7 years ago | 2

| accepted

Answered
Trouble with a correlation analysis code
Hello, I downloaded your data and ran your code and it didn't encounter any errors for me (rows was a logical vector so rows=...

7 years ago | 0

| accepted

Answered
Multiple line and bar with two y axis.
Hello, Stealing entirely from Jan Simon's comment, you can use the <https://www.mathworks.com/help/matlab/ref/yyaxis.html#mor...

7 years ago | 0

Answered
How to plot the equation |x|+|y|+|z|=1 ?
Hello, I'm certain there's a better way to do this, such as with surf, but here is a solution. If you consider the equatio...

7 years ago | 0

Answered
Matrix manipulation and using the sum command
Hello, Would, A(2,2) = 0; A(2,2) = sum(A(:)); or A(2,2) = sum(A(:)) - A(2,2); suffice? You could also gen...

7 years ago | 1

Answered
Replacing values in a cell with NaN
Hello, Your code works for me, although I would recommend using for i = 1:size(Data,1) rather than for i = 1:len...

7 years ago | 1

| accepted

Answered
how to divide an image into 16x16 non overlapping blocks
Hello, Assuming your image has size m x n where m and n are multiples of 16: YourImage = im2double(YourImage); [m,n] ...

7 years ago | 2

| accepted

Answered
I have I and Q data in time but I need to plot them in frequency
Hello, Your solution lies within your tags. The Fourier transform is a way to change a signal from its original domain to a r...

7 years ago | 0

Answered
Given standard deviation of two of the variables in a function, calculate the standard deviation of the output
Hello, Assuming x and y have the same mean (among other things), I'd say about 14.61%. I simulated it as follows: for i ...

7 years ago | 1

Answered
Is it possible to apply common axes values to existing figures?
Hello, You can use: axis([x1 x2 y1 y2]) where x1 specifies the left side axis limit of the x-axis, x2 the right side ...

7 years ago | 0

| accepted

Answered
why do get an error when I use the help function?
Hello, It seems that you have a script/function named help.m in the directory. You should rename this to something unique,...

7 years ago | 1

| accepted

Answered
How to Read a file with unknown name
Hello, You can do so like this (assuming only one csv file): A = dir('*.csv'); B = csvread(A.name); Hope this he...

7 years ago | 1

| accepted

Answered
how to add 3 matrices with one dimension same for all and other dimension different?
Hello, I only tested this with your example and it worked, but I think it's generally correct: % % Strangely adding mat...

7 years ago | 1

Answered
How to orient a text arrow
Hello, You can specify the start and end of the arrow, as well as the type of arrow using an <https://www.mathworks.com/help/...

7 years ago | 0

| accepted

Answered
Shade a wedge/portion of a compass or polar plot?
Hello, I've found <https://www.mathworks.com/help/matlab/ref/fill.html fill> to be useful in this scenario, although it's slo...

7 years ago | 1

Answered
How do you pass a matrix (parameter) to decic and ode15i?
Hello, Rather than having to include your matrix in the decic/ode15i functions as an input, you could declare your matrix as ...

7 years ago | 0

| accepted

Question


Are Global Variables Transferred Significantly Slower Than Function Inputs?
Hello, I have a few massive matrices which are used in a function that is called many thousands of times. Due to the way the ...

7 years ago | 1 answer | 0

1

answer

Answered
I was trying to plot a sine wave in matlab but it keeps on showing this error: undefined function or method 'sin' for input types of argument 'char'
You have a colon after t = 0.0:0.001:10: <- t = 0:0.001:10; x = sin(4*pi*t); plot(t,x) The above code works for me....

7 years ago | 0

Answered
How to assign properly global variables
Hello, I provide a specific solution at the bottom after the explanation on global variables. Global variables are a way t...

7 years ago | 2

| accepted

Load more