Respondida
How can I model the decay rate of Carbon 11 and its bar graph?
You need to account for all of the atoms in your plot. E.g., this R(i) = N - sum(f(1:i)); % <-- Wrong, you are only plotting t...

más de 7 años hace | 0

| aceptada

Respondida
Sparse matrix ir sorting
Yes, the elements in the ir array corresponding to the same column are guaranteed to go in increasing order. The indexing is 0-...

más de 7 años hace | 1

| aceptada

Respondida
How to loop through all rows using a for loop
I will get you started: patients = the variable that has all of the patient information for k=1:_______ <-- you fill this in ...

más de 7 años hace | 0

Respondida
Help with learning indexing
x is size 2x3, so the 'end' in the 2nd index position is 3. Then just do the math (3-1)/2 = 2/2 = 1 so x(2,(end-1)/2) = x(2,1)...

más de 7 años hace | 0

Respondida
Cross Product of an Array
M = your 3xN matrix v = your 3x1 vector result = cross(M,repmat(v,1,size(M,2)));

más de 7 años hace | 1

| aceptada

Respondida
i need solve m*d2x/dt2 + c*dx/dt + k*x= 0 with matlab and I have encountered an error Undefined function or variable 't'. please help me
Is this code all together in one file as written above? You need to have your driver code (the code that calls ode45) first, an...

más de 7 años hace | 0

Respondida
How top stop for loop if value is reached
if( norm(X(c+1,:)-X(c,:)) < some_tolerance ) break; end or perhaps if( all(abs(X(c+1,:)-X(c,:))) < some_tolerance ) ...

más de 7 años hace | 0

| aceptada

Respondida
what does this mean?
fprintf('\nIteration number = %d \n', m);

más de 7 años hace | 0

| aceptada

Respondida
2 degrees of freedom mass-spring system
In this line dy=[y(2);y(4);dy(3);-inv(M)*K*y]; looks like M and K are both 2x2 but y is 4x1, hence the error. Also, your argu...

más de 7 años hace | 1

Respondida
Fourth Order Runge Kutta for Systems
This line does not have the rhs state syntax correct: y_vals(i+1,:) = y_vals(i) + (k_1+2*(k_2+k_3)+k_4)/6*h; It should be thi...

más de 7 años hace | 0

Respondida
Vectorize many matrix multiplications using the third dimension
See this link: https://www.mathworks.com/matlabcentral/answers/456711-how-can-i-do-matrix-multiplication-on-sets-of-data-in-an-...

más de 7 años hace | 1

| aceptada

Respondida
How do I sample a random value from a normal distribution
doc randn

más de 7 años hace | 1

Respondida
i want to plot x and y for ODE45 function
This line doesn't look correct: dy(1) = x(2); The first agument x in the derivative function is the independent variable and a...

más de 7 años hace | 1

| aceptada

Respondida
How can I do matrix multiplication on sets of data in an array without looping?
First, some basic data storage advice. When you have multiple matrices stored in a larger matrix or array, it is usually best to...

más de 7 años hace | 1

| aceptada

Respondida
Help Converting C++ to MATLAB.
Probably easiest is just to do it by hand one line at a time. Replace the control syntax with its MATLAB counterpart, and add 1...

más de 7 años hace | 0

Respondida
Second Order ODE with Runge Kutta 3 "K's problem"
You are using the same k's for x1 and x2, which is incorrect. That is, you are using f2( ) to calculate the k's, but these shoul...

más de 7 años hace | 0

| aceptada

Respondida
Nonscalar arrays of function handles are not allowed; use cell arrays instead error, not sure what it means / how to fix it
You are simply using the wrong syntax for what you really want. It should be something like this instead: %v[1] = x %v[2] = y...

más de 7 años hace | 0

Respondida
What function returns (as an integer) the number of bits in a data type or class, e.g. returns 16 for 'int16' or 'uint16' variables, 32 (or whatever) for 'float' types, etc.?
I think everything that MATLAB runs on currently uses IEEE single and double floating point formats. And the signed integer for...

más de 7 años hace | 0

Respondida
To Stupid for Matrix Loop
Do you mean simply this? for i=x for j=y IMG(i,j) = pixfilter(IMG,i,j); end end

más de 7 años hace | 0

Respondida
How do i write an input statement asking the user to enter their birthdate as a matrix with entries of month,day, year?
If the user follows instructions, birthdate will be a vector of three numbers, so you need the format string to print out three ...

más de 7 años hace | 1

| aceptada

Respondida
Solving questions related to taylor series expansion
You need to compare the absolute value of the term to your tolerance. Remember, some of the terms are negative. while abs(term(...

más de 7 años hace | 0

| aceptada

Respondida
Recursion for Unnesting 1x1 Cell Array
Are you sure it is a single quote char string 'example' and not a double quote string "another_example"? What is the actual err...

más de 7 años hace | 0

| aceptada

Respondida
sum command giving ridiculous answer
It could be you are comparing apples to oranges. The actual numbers probably have more than four digits that are not being displ...

más de 7 años hace | 2

Respondida
Why am I getting "Undefined function or variable" when I use an exponential in the function?
There is no "I" variable in your code. Hence the error.

más de 7 años hace | 0

Respondida
Generate random samples .
r = rand(1,500); Use the r values as an indicator of which distribution f or g to draw from. For those r < 0.4, generate normal...

más de 7 años hace | 1

| aceptada

Respondida
Pre-locating an array
Numeric arrays must be rectangular. You cannot have different dimensions for different slices. To get that behavior you would n...

más de 7 años hace | 0

| aceptada

Respondida
How to find Matlab version to be used in the mex file header
Version info for mex routines can be found in this FEX submission: https://www.mathworks.com/matlabcentral/fileexchange/67016-c...

más de 7 años hace | 1

Respondida
How do I reorder a 3D matrix in a specific way?
There's got to be a simpler way, but here goes p = permute(MeanV,[2 1 3]); result = reshape(cat(3,p(:,1,:),p(:,2,:),p(:,3,:)),...

más de 7 años hace | 1

Respondida
Index exceeds matrix dimensions
You don't index wE in your loop when you are doing the iterations, so each iteration overwrites the previous iteration. Looks li...

más de 7 años hace | 0

Respondida
Column-wise inexing of matrix
One way that is scalable and matches your example: A(indx + (0:size(indx,2)-1)*size(A,1)) This uses implicit expansion. On ear...

más de 7 años hace | 1

| aceptada

Cargar más