Answered
Problem starting Matlab 2018b
It’s better to contact Mathworks Support Team by clicking the top right corner of this page , they will guide you further.

7 years ago | 0

Answered
error in solving numerical integral
syms t x % at the very beginning %remove @(x,t) and replace it with matlabFunction()

7 years ago | 0

| accepted

Answered
Error using * Inner matrix dimensions must agree.
Use size() to check the sizes of the variables if they have compatible sizes ( https://www.mathworks.com/help/matlab/matlab_prog...

7 years ago | 0

| accepted

Answered
How to separate each day of this file?
https://www.mathworks.com/help/matlab/ref/dlmwrite.html?searchHighlight=dlmwrite&s_tid=doc_srchtitle#btzp57u-1 - adapt precision...

7 years ago | 1

| accepted

Answered
Sorting 1 column with repect to other column....
a=[ 1.0000 56.6260 2.0000 88.6820 3.0000 84.2882 4.0000 93.1880 5.0000 111.9330 6.0000 95.12...

7 years ago | 0

Answered
What is my ID
I have no idea what you mean by ID if it's license number then: license % in command window , it shows your license number No...

7 years ago | 0

Answered
How can I copy a column I already have and add it on to the end of my matrix?
EDITED https://www.mathworks.com/help/matlab/ref/addvars.html - as you already have it as a table like shown in your previous q...

7 years ago | 1

| accepted

Answered
How do I get Matlab to show the first 10 terms of a series?
You are close but define n and use symsum() then finally use array2table() instead of table(). help symsum help subs help arr...

7 years ago | 1

| accepted

Answered
Flipping specific segment of string rather than the whole string
str='One two buckle my shoe'; b=strsplit(str,' '); strM=strjoin(cellfun(@flip,b,'un',0)) b=flip(strsplit(str,' ')); strN=str...

7 years ago | 0

Answered
Plotting function was error
Reason for error was variavles were not defined. syms x v11=3; %example datas v31=5; v21=10; fplot((-v11*x+v31)/v21) doc f...

7 years ago | 0

| accepted

Answered
I want to call the fifth column from a table
https://www.mathworks.com/help/matlab/matlab_prog/access-data-in-a-table.html -to know more inputTable{:,5} % where inputTable...

7 years ago | 0

Answered
Replace values in table from a second table
help strcmp

7 years ago | 0

Answered
Legend (working with previous version) does not work in R2018b
I was not able to reprodcue that in 2018b it's better to contact Mathworks Support Team by clicking the Contact Us button on the...

7 years ago | 0

Answered
Anovan table cannot be saved as ".fig"
https://www.mathworks.com/matlabcentral/answers/437512-my-script-is-not-publishing-figures-even-though-i-have-used-snapnow#comme...

7 years ago | 0

Answered
1D matrix addition weirdness
It's not wierd see https://www.mathworks.com/help/matlab/matlab_prog/compatible-array-sizes-for-basic-operations.html . Clearly ...

7 years ago | 0

| accepted

Answered
I am getting an error as "Operands to the || and && operators must be convertible to logical scalar values. Error in xd (line 8) if (t>=t1)&&(t<t2)".
&& and || for scalars for vectors use & and | , logical indexing is efficient: t1 = 0; t2 = 10; t3 = 20; t4 = 30; t = 0:5...

7 years ago | 1

Answered
How to calculate the mean of an image if I want to delete some value?
matrix=double(matrix); % where matrix is the matrix of which you are trying to calculate the mean of matrix(matrix>185)=NaN; R...

7 years ago | 0

Answered
How to find out the column number of a same element of one matrix in other matrix?
Position=find(ismember(A,B))

7 years ago | 0

Answered
choose row cell of matrix
A=[1 2 0.1 0.2;... 1 5 0.2 0.2;... 2 3 0.4 0.4;... 2 4 0.9 0.8;... 2 5 0.3 0.4;... 3 4 1.1 2.2]; B={[1,2,5]...

7 years ago | 0

Answered
Matlab R2018b doesn't open
Better option is to contact Mathworks Support Team by clicking thr Contact Us button on the top right corner of this page if the...

7 years ago | 0

Answered
Cancel the auto scroll down in the command window
It's not normal , by any chance are you using matlab mobile? it happens for me too , guess it's by default.

7 years ago | 0

Answered
How to plot an empty 2-D cartesian grid on its own ?
Perhaps? [X,Y]=meshgrid(200:10:455,50:5:305); mesh(X,Y) view(2)

7 years ago | 0

Answered
Import data of a sequence of files and process the data
For reference https://www.mathworks.com/help/matlab/import_export/process-a-sequence-of-files.html - use sprintf()

7 years ago | 1

Answered
Plotting function with multiple limits
doc diff doc piecewise

7 years ago | 0

Answered
Repalce zero element by the number before it ?
EDITED N = [2 0 7 0 9 10 0 0 11 0 0 ]; M=N; M(M==0)=NaN; M=fillmissing(M,'nearest') ...

7 years ago | 1

Answered
how i can draw this type of graph in matlab?
Read the below two: doc plotyy doc yyaxis

7 years ago | 0

Answered
How to prevent small lines from disappearing on zoom out?
Becuase you plot single points in every iteration and you haven‘t mentioned a marker for it plot(...,'-ok','Linewidth',3) ...

7 years ago | 1

Answered
How to replace row or colum of one dimention to a matrix of fixed length?
Simply use Matrix Indexing: a(2:end,1)=b

7 years ago | 1

Answered
Replacing columns of a matrix
matrix(matrix==0)=1/1899 % replaces 0 values with 1/1899

7 years ago | 0

| accepted

Load more