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

fast 10 Jahre vor | 0

Frage


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

fast 10 Jahre vor | 3 Antworten | 0

3

Antworten

Beantwortet
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...

fast 10 Jahre vor | 0

Beantwortet
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...

fast 10 Jahre vor | 0

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

fast 10 Jahre vor | 2

Beantwortet
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

fast 10 Jahre vor | 0

Beantwortet
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...

fast 10 Jahre vor | 0

| akzeptiert