Answered
Matlab busy, but nothing shows up
I would simply reinstall matlab. Don't forget to save your codes.

10 years ago | 0

Question


How to check which packages are installed in matlab?
My version is 2012a

10 years ago | 3 answers | 0

3

answers

Answered
Undefined function or method 'int' for input arguments of type 'double'. Error in ==> @(Y,n,t)int(cos((n*pi)*t).*Y,t,0,2)
Typically this means that matlab doesn't know this function. Try to type "help int" in the command window. You can check this wa...

10 years ago | 0

Answered
What's the best way to plot overlapping and open ranges?
*how the numbers are scattered* n=[1 3 4 5 8 8 9 10 11 13]; x=min(n):(max(n)-min(n))/10:max(n); hist(n,x) So you wil...

10 years ago | 0

Answered
The way to solve a singular matrix
U need SVD? http://www.mathworks.com/help/matlab/ref/svd.html

10 years ago | 2

Answered
What's the best way to plot overlapping and open ranges?
Can you give some example (with like 10 numbers and 4 ranges)? It's difficult to understand what are you meaning

10 years ago | 0

Answered
How to make a loop to add 3 elemts in matrix of zeros(n,n)?
As i understand, u need this: n= input('enter the value of n:-->'); A= zeroes(n,n); %n must be greater than 3 for i=2...

10 years ago | 0

| accepted