Respondida
Index exceeds the number of array elements (1)
Type the following at the command line: dbstop if error Then run your code. When the error occurs, the code will pause at that...

más de 7 años hace | 0

Respondida
How to correct "Parse" error
Don't have your function at the top of this. Put it at the end or in a separate file. E.g., t = 1; while (height ~=0) h =...

más de 7 años hace | 0

Respondida
I have a matrix (57,3600,45), how can I create matrices with (3600,45)?
Is this what you want? k = some integer index squeeze(your_matrix(k,:,:))

más de 7 años hace | 0

Respondida
Square root table without using arrays
You need to put the new line \n in appropriate places in your loops. In particular, you only need one new line \n printed once y...

más de 7 años hace | 0

| aceptada

Respondida
Memory Size and Processor Speed
Yes you can run MATLAB on this. What tasks will you typically be using MATLAB for?

más de 7 años hace | 0

| aceptada

Respondida
How to? - Complex numbers
E.g., for an anonymous function you need to give the input argument list first. E.g., for a generic derivative function that tak...

más de 7 años hace | 0

| aceptada

Respondida
And/or between two 3d arrays
Do you mean this? sum(array1>250 & array2>170,3);

más de 7 años hace | 0

Respondida
Function in Fortran to Funciton in Matlab
function result = F0(n,x) if( n<2 ) error('bad argument n in F0') end tox=2.0/x; bkm=F00(x); bk=F01(x); for j=1:n-1 ...

más de 7 años hace | 1

| aceptada

Respondida
differentiating function & getting different answer
Perhaps you are shadowing the MATLAB function diff with a function of your own. Make sure diff is pointing to the MATLAB functio...

más de 7 años hace | 0

Respondida
Invalid Syntax at '='.Possibly,a ),} or ] is missing at line 6 .
The { } formulation for blocking code is not valid MATLAB syntax. To fix this: Get rid of the open brace { Replace the close b...

más de 7 años hace | 1

| aceptada

Respondida
use this vector and a mathematical expression to create the following vectors:
Yes. It works for me: >> x= [1, 2, 3, 4 ,5] x = 1 2 3 4 5 >> x1= x.*[1,128,243,64,5] x1 = 1 25...

más de 7 años hace | 0

Respondida
Extracting matrix values for an algorithm
Something like this? xy = your n x 2 array n = size(xy,1); for k=1:n % run your algorithm here with x = xy(k,1) and y = ...

más de 7 años hace | 1

| aceptada

Respondida
Basic power rule ((a^b)^c = a^(b*c)) does not work
This has been discussed in this forum before. Raising complex numbers to a power is a multi-valued operation. MATLAB picks one...

más de 7 años hace | 1

Respondida
Is it possible to use logical indexing to specify between a number interval and include a value outside that interval.
E.g., Mask = ismember(str,[' ','a':'z','A':'Z']); Or using your method Mask = (65<=Ustr & Ustr<=90) | Ustr == 32;

más de 7 años hace | 1

| aceptada

Respondida
BEGINNER PROBLEM: Trying to finish up an assignment but I am stuck with this error and am not sure how to fix
lab_total and assign_total and exam_total are all vectors, so the right hand side expression is a vector. You try to stuff that...

más de 7 años hace | 1

Respondida
I have a problem with this ode45
I don't see anywhere in your code where you define i and j before using them as indexes into Phi0 and Z0, so they default to the...

más de 7 años hace | 0

Respondida
Vector matrix multiplication with a condition
For later versions of MATLAB: c = all(A==B | A==2,2); For earlier versions: c = all(bsxfun(@eq,A,B) | A==2,2);

más de 7 años hace | 0

| aceptada

Respondida
Can ode45 solve a ODE with space dependent parameters?
Yes. In general, if the derivative is a function of current state and time (even if there are vectors or matrices involved), the...

más de 7 años hace | 2

| aceptada

Respondida
Is it possible to set rules for calculating permutations of column vectors?
Use the diff( ) function to calculate all of the permutations, and then count the number of valid ones. E.g., P = perms(1:i...

más de 7 años hace | 1

| aceptada

Respondida
Get UNIX standard timestamp on MATLAB
You need to be careful about how you use the posixtime(t) function. From the documentation: "...If the time zone of t is not sp...

más de 7 años hace | 3

Respondida
"To RESHAPE the number of elements must not change".This error occurs in line18.how to correct this error?
This expression is only going to work if size(a,1)*size(a,1) = numel(a): reshape(a,size(a,1),size(a,1),1); What are you trying...

más de 7 años hace | 0

Respondida
Matlab crashes but Octave doesn't
What happens if you do the A\b differently? E.g., doing the LU decomposition manually and then backsolving yourself? Or doing pi...

más de 7 años hace | 0

| aceptada

Respondida
R2018b real times complex multiplication
Probably related to the fact that complex variables changed to an interleaved storage format in R2018a. So my guess is this is w...

más de 7 años hace | 2

| aceptada

Respondida
Write a function called WordProduct to calculate the alphabetic word product of a character vector.
Hints to get you started: Look at the upper( ) and lower( ) functions What happens if you subract 'a' or 'A' from your vector?...

más de 7 años hace | 0

Respondida
Changing elements with a condition
clear X2 X3 [m,n] = size(X1); X2(2:m,2:n) = X1(1:m-1,1:n-1); X3(3:m,3:n) = X1(1:m-2,1:n-2);

más de 7 años hace | 1

| aceptada

Respondida
I dont understand the vectors and element parts.
Typo. This j*y*(1) <-- Uses the full vector y times the scalar 1 should be this j*y(1) <-- Uses only the y(1) element

más de 7 años hace | 0

| aceptada

Respondida
Efficient indexing with nested object and object arrays
Whether this works or not depends on what is in the properties, but have you tried simple concatenation on the rhs? [out] = [pa...

más de 7 años hace | 0

Respondida
Matlab not squaring imaginary part of complex number.
Squaring complex numbers does not in general result in real numbers. It all depends on the phase angles involved (would need to ...

más de 7 años hace | 0

Respondida
find roots of determinant
Since the determinant of a matrix is equal to the product of its eigenvalues, maybe you could work with eig(A(x)) instead and tr...

más de 7 años hace | 0

Respondida
Rotation Matrix with euler angles
The best I can guess is you are given three Euler angles with a sigma for noise, and you want to output a corresponding rotation...

más de 7 años hace | 0

| aceptada

Cargar más