답변 있음
strange operation .^ result came out
You are raising -1 to a fractional exponent, so complex numbers will result. Did you mean something like this instead t = 0:10...

대략 6년 전 | 0

| 수락됨

답변 있음
matlab digit precision is not correct?
That is just a display artifact. The entire number is still there in memory. Do this to change the display format format longg ...

대략 6년 전 | 0

답변 있음
Multiplication with in a double arrray
M = your 4096x2 double matrix M(:,3) = M(:,1) .* M(:,2);

대략 6년 전 | 1

| 수락됨

답변 있음
matlabs polyfit not working correctly problem
Highest order is first in the p vector. So explicitly this would be pol = p(1)*T_vec.^3 + p(2)*T_vec.^2 + p(3)*T_Vec + p(4) Yo...

대략 6년 전 | 0

| 수락됨

답변 있음
error in using cellfun
This is a limitation of the struct( ) function when fed a cell array. If you examine s you will see it is not what you wanted. ...

대략 6년 전 | 0

| 수락됨

답변 있음
arrange an array(1xn) to (rxc)
Not sure how you want the output ordered. Maybe this A = reshape(m,9,9); or this A = reshape(m,9,9).';

대략 6년 전 | 0

| 수락됨

답변 있음
while loop ends before the question is answered?
Your break is in the wrong place. It should be under one of the if conditions: if user_number==r disp('Nice job you gue...

대략 6년 전 | 1

| 수락됨

답변 있음
Extra independent component in ode integration affects other components
The integrators do not internally step each element separately. They still step the entire state vector as a whole. So even tho...

대략 6년 전 | 0

| 수락됨

답변 있음
ODE 45 not working - not enough input arguments
ode45( ) requires that the derivative function handle have the specific arguments (t,y), where y is a single state vector. But y...

대략 6년 전 | 0

| 수락됨

답변 있음
ode45 - nonscalar
I suppose you could do something like this instead: F{1} = etc. F{2} = etc. F = F'; f = @(X,T)cell2mat(cellfun(@(c)c(X,T),F,...

대략 6년 전 | 0

답변 있음
Column Vector - Nonscalar arrays.
F = @(X, T) [F1(X, T); F2(X, T)];

대략 6년 전 | 1

답변 있음
How to find an explicit function when using Runge-Kutta or one of the pertinent codes in Matlab (ode45)
Symbolic Toolbox doc dsolve https://www.mathworks.com/help/symbolic/dsolve.html

대략 6년 전 | 0

답변 있음
Extracting parts of matrix for sub matrices
E.g., to put them into a cell array mat = your matrix result = mat2cell(mat,repmat(16,8,1),repmat(16,8,1));

대략 6년 전 | 0

답변 있음
Exact probability of a triangular distribution
The exact probability of getting a number greater than the mean is simply the sum of the probabily to the right of the mean. Si...

대략 6년 전 | 1

| 수락됨

답변 있음
I want to rotate a point using Quaternion function
I took a look at this related link: https://github.com/petercorke/robotics-toolbox-matlab/blob/master/Octave/%40Quaternion/Quat...

대략 6년 전 | 1

| 수락됨

답변 있음
Converting sensor frames using Aerospace Toolbox
This discussion on MATLAB quaternion convention might help you: https://www.mathworks.com/matlabcentral/answers/465053-rotation...

대략 6년 전 | 0

답변 있음
Problems with sortrows and str2double, why is it still string?
>> [~,x] = sort(str2double(Respiration_Values)); >> B = Respiration_Labelled(x,:) B = 7×2 string array "139299" "...

대략 6년 전 | 2

| 수락됨

답변 있음
Binary Image: Count number of pixels that are 1.
nnz(bw)

대략 6년 전 | 2

답변 있음
error when running a function
Do not push the green triangle "go" button in the editor since that calls the function without any input arguments. Instead, cal...

대략 6년 전 | 1

답변 있음
solving a set of differential equations with ode45
Initial conditions is a 4-element vector: IC1=[0; 0; 298; 298]; But in your derivative function you have this: M=[5,15,25,55]...

대략 6년 전 | 0

| 수락됨

답변 있음
Loops - physics - nonlinear gravity & acceleration
Your immediate problem is that h is a vector, so the right hand side of this statement is a vector: g(i+1)=(400000000/(6371+h...

대략 6년 전 | 0

답변 있음
Looping over column and returning values where conditions are met
In general, perform find( ) on the condition you want. E.g., find(matrix(:,4)>80) would return the row numbers where the 4th c...

대략 6년 전 | 0

답변 있음
sparse half-precision matrices
The sparse format in MATLAB only supports double and logical data types. To use any other data type you would have to write all...

대략 6년 전 | 0

| 수락됨

답변 있음
RK4/AB4, need help with correct code for 2 second order equations in Matlab
So, first define a 4-element state vector. To keep the nomenclature the same as the MATLAB docs, I will use the variable name y....

대략 6년 전 | 1

| 수락됨

답변 있음
Cell Arrays and Indexing?
This is the reverse of your last assignment. It needs only one loop over the number of rows, and the cell array element for tha...

대략 6년 전 | 0

| 수락됨

답변 있음
Cell arrays and Indexing with Cells HELP?
This row = Q(1:end); col = Q{1:end}; Z(row, col) = true; is actually a good attempt and shows you understand the problem .....

대략 6년 전 | 0

| 수락됨

답변 있음
repeat the iteration with an error using try/catch
Maybe this construct does what you want while( true ) try MyProgramHere ...

대략 6년 전 | 0

| 수락됨

답변 있음
Storing doubles in the smallest integer class for which they fit without changing their value?
Some hints: Don't use loops, use vectorized code to figure out which integer size works. intmax(type) gives you the largest va...

대략 6년 전 | 0

| 수락됨

답변 있음
How do I make a function work with vectors?
Use element-wise divide operator ./ (with the dot) instead of the matrix divide operator / (without the dot). E.g., tanH(x)=((...

대략 6년 전 | 0

| 수락됨

답변 있음
ODE solving using RK4 method (Predator prey)
Your basic problem is that you have two states, x and y, but your function arguments are inconsistent with this. Take this code:...

대략 6년 전 | 1

| 수락됨

더 보기