Answered
Indexing into a m x n array to find values using an array of row and column indices
Note: Your D seems to be wrong 0.34+0.5 == 0.84 not .54. According to the example what you posted A and B are not cell array if...

7 years ago | 0

Answered
Why is it wrong: e3=sym('sin(x)^2+cos(x)=0')
sym('') was replaced by str2sym('') in latest versions and you seem to be using 2018b version e3=str2sym('sin(x)^2+cos(x)=0') ...

7 years ago | 0

| accepted

Answered
expr2=collect(EXPR,'exp(-t)') Why is it wrong?
expr2=collect(EXPR,exp(-t)) % no single quotes around the second argument

7 years ago | 0

| accepted

Answered
Doing calculation across columns
D=zeros(500,5); D=matrix; D(:,5)=exp((-(matrix(:,2)-75)/2).^2)

7 years ago | 0

| accepted

Answered
vectors must be the same length
Make the vectors the same length then exactly as the error message tells you! *2 is a scalar*, each component of your vector rep...

7 years ago | 0

| accepted

Answered
length of arrey in cell and remove 0
A(cell2mat(A)==0)={[]}; % assuming each cell is scalar B(cell2mat(B)==0)={[]}; C=cellfun(@(m,u) numel(m)+numel(u),A, B, ...

7 years ago | 0

| accepted

Answered
Converting user input char to an array
It‘s not *st2sum* it’s *str2num()*. Usually *str2double()* is preferred.

7 years ago | 0

Answered
For an nx3 matrix, filter out the rows with a maximum 3rd column when the first and second are the same
See if this does what you want: m=[ 0 0 0 1 1 2 1 1 3 1 1 5 2 1 6 3 3 2 3...

7 years ago | 0

Answered
how can i ask the user for 2*2 matrix
if size(matr,2)>2 disp('Has more than 2 Columns beware!') end

7 years ago | 0

Answered
i got this error
Same issue as your previous question. <https://in.mathworks.com/matlabcentral/answers/457478-i-received-this-error#answer_37143...

7 years ago | 0

Answered
i received this error
You have a file named *rank.m* which *shadows* the *in-built* function *rank()* , move it from the *path* or *rename* it to avoi...

7 years ago | 0

Answered
How to combine sections from Workspace into a new vector?
Yes ,simply use basic indexing: % 1) D = [A(1:500);B(1:500)] % example % 2) ith_row = 400; jth_row ...

7 years ago | 1

| accepted

Question


Why does exit throw an error?
Error using exit Some kind of I/O error occurred when accessing database /var/folders/1c/p7c0w2dd0275_20nq4yjp1g00000gn/...

7 years ago | 0 answers | 0

0

answers

Answered
I appreciate if anyone could help me with this problem
Hint: Use *sort()*.

7 years ago | 1

Answered
How does Matrix(3002:2001:1999998)=0.4 works?
Matrix = [1:3;4:6;7:9] Matrix(1:2:end) = 0 % I suggest you to read about MATLAB indexing

7 years ago | 0

Answered
How to run a for-loop multiple times?
for k=1:100 for ... % some operation end end

7 years ago | 0

Answered
Double integration within finite limits
Simply use *integral2()*

7 years ago | 0

Answered
How to create an Array of vectors ??
Use a cell array as Stephen suggests: v1=1:3; v2=2:9; v3=2; A={v1;v2;v3}

7 years ago | 0

Answered
How to add two different set values .
A={4,5,3}; B={12}; [A{:}]+[B{:}]

7 years ago | 0

Answered
Undefined function or variable 'imtile'. is ti belongs to any toolbox?
<https://in.mathworks.com/help/matlab/ref/imtile.html> - *released in 2018b*

7 years ago | 0

Answered
Input function does not display the command in command window
Looks like you have made a file named *input.m* remove it from the path or rename it.

7 years ago | 0

| accepted

Answered
Collecting the outputs of a function within a for loop
time = 100; [A,B,C,D]=deal(cell(100,1)); % if the outputs are scalars then use zeros() instead of cell for ii=1:time [A{i...

7 years ago | 0

Answered
How do I create a unit vector with multiple rows
[14:16;12:14]

7 years ago | 1

| accepted

Answered
Extracting intervals from an array to create a new array
sum(reshape(array,[],5),2)

7 years ago | 0

Answered
Undefined function 'synchronize' for input arguments of type 'double'
https://in.mathworks.com/help/matlab/ref/timetable.synchronize.html#bvdhiyk_seealso - released in 2016b

7 years ago | 0

Answered
Indexing arrays to a new array
Use basic indexing: Array1(4:8)

7 years ago | 0

| accepted

Answered
How to find out whether there is a repetitive element in the columns of a matrix?
Repetitions_in_columns=true(size(a,2),1); for k = 1:size(a,2) Repetitions_in_columns(k)=any(sum(a(:,k)==unique(a(:,k)).')>...

7 years ago | 1

| accepted

Answered
How to Customize Sigma in subexpr()?
subs(eqn2,sigma,k1+k2)

7 years ago | 1

| accepted

Answered
matrix must agree how do i fix this
N has 13 values and theta has 7 values they should have same number of elements , you maybe interested in using linspace() for t...

7 years ago | 0

| accepted

Answered
how to change every value not equal to X in every rows
Wanted = zeros(size(matrix)); indices=sub2ind(size(matrix),1:size(matrix,1),Vector); Wanted(indices)=matrix(indices)

7 years ago | 0

| accepted

Load more