Beantwortet
3/8 Simpson's Rule
Please don't keep on posting the same question. You got no answer, since your question was itself terribly confusing, as was you...

fast 4 Jahre vor | 1

Beantwortet
How to find position function with acceleration function using matlab
Just knowing the acceleration is meaningless, UNLESS you know how long the acceleration was in force. Next, acceleration is a ve...

fast 4 Jahre vor | 0

Beantwortet
How can i get ODE to solve an equation if my y0 is more than one value?
You seem to have a misunderstanding. You are asking to solve a differential equation, here a first order ODE. (A Jan points out...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Get the displacement component which is perpendicular to the triangle (finite element)
A highly confusing question. You talk about a triangle, but you do not tell us the coordinates of the triangle, only the displac...

fast 4 Jahre vor | 1

Beantwortet
Using nested FOR() loops to populate a matrix
You have a solution. It works. Do you need for loops, or worse, nested for loops? Of course not. The entire point of this answer...

fast 4 Jahre vor | 1

Beantwortet
Why is it that when I am trying to create a function, the run button at the top turns grey?
You DON'T use run on a function. That makes no sense I'm afraid. Instead, functions in MATLAB are things you would call from ei...

fast 4 Jahre vor | 0

Beantwortet
Matlab code for solving nonlinear equations
Actiiually, this is almost trivial. Seriously. It is. All of the trig terms are just known constants. And everything else is in ...

fast 4 Jahre vor | 2

| akzeptiert

Beantwortet
how to draw the hyperboloid of one sheet?
help fimplicit3

fast 4 Jahre vor | 0

Beantwortet
if and sum not working together
I'll say the same thing, but differently. As @Steven Lord points out, you cannot represent the fraction 1/3 exactly as a decim...

fast 4 Jahre vor | 2

Beantwortet
Looping if between 2 numbers
As @Jeffrey Clark said, the & operator is a LOGICAL operator. Perhaps what you want to do is have a loop over a discontigous dom...

fast 4 Jahre vor | 0

Beantwortet
How can I solve a system of non-linear equations with complex numbers?
WHY NOT TRY IT? Assuming you really intended for the second equation to use sind(120)... syms theta r eq1 = 0 == 2*cosd(240) +...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
what formula do I have to put for calculating by using MATLAB?
Start here: help sum Then spend some time on the MATLAB Onramp tutorial, since this is a basic question.

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Question about how the isosurface function works
isosurface cannot use interpolation? Why not? All that is necessary is the ability to perform LINEAR interpolation, between pair...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Extreme points of a polyhedral set
Was it really necessary to put a picture of the equations into your question, when simple text was just as easy? That means, in ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to approximate a multivariable arctan function?
@Sam Chak has suggested an interesting idea in a comment. However, while it is not a bad idea at first glance, I suspect it will...

fast 4 Jahre vor | 1

Beantwortet
Formatting of result values.
You cannot write it in that form, at least not easily. Yes, you could write a formatting code. But you would need to write it, s...

fast 4 Jahre vor | 0

Beantwortet
vectorized code is more time consuming than a simple for loop
It is not uncommon to have vectorized code be slower than a brute force loop. Why? The word "vectorization" can refer to many d...

fast 4 Jahre vor | 3

| akzeptiert

Beantwortet
Problem with non-linear implicit equation using fsolve
a = 1.5; R = 190; bmax = 0.0024139; bmin = 9.779e-10; Since you do not tell us the values of A and B, only the range, I'll...

fast 4 Jahre vor | 0

Beantwortet
How to sort points clockwise or counterclockwise?
Can you compute the polar coordinates angle, around that mean? (Hint: use atan2. Don't forget to subtract off the mean FIRST.) ...

fast 4 Jahre vor | 1

Beantwortet
Scaling variables for integration with ode15s
There is a reasonable chance your results may problematic, if you do not scale things. While you may get a result, you will have...

fast 4 Jahre vor | 0

Beantwortet
1, 4, 7, 2, 5, 8, 3, 6, 9 serie
Yes, @Tom has given a great answer. The way I would solve it on any normal day. But, just perhaps, is there another way? There a...

fast 4 Jahre vor | 0

Beantwortet
Sentiment Analysis Expand Contractions
Is it possible? Of course. Search for the possible contractions. Replace them with uncontracted forms. Note that SOME forms woul...

fast 4 Jahre vor | 1

Beantwortet
Converting system of equations to form Ax=b
help equationsToMatrix For example. syms x y E1 = x + y == 1 E2 = x - y == 2 [A,B] = equationsToMatrix(E1,E2,[x,y])

fast 4 Jahre vor | 2

| akzeptiert

Beantwortet
How to assign a symbolic matrix to another new matrix?
You are NOT assigning a symbolic matrix to another "new" matrix, but you are instead trying to stuff symbolic elements into an e...

fast 4 Jahre vor | 0

Beantwortet
Access contributor message threads on MATLAB Central
No. And, yes. Sort of. Is that a good answer? If the person you wanted to contact does not have messaging allowed, then you can...

fast 4 Jahre vor | 0

Beantwortet
I need to change this code into one that can solve complex roots
Interesting. It does not work? :) Gosh, You could have fooled me. I'll try an example. (I've attached the code you gave, so it w...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
Creating sub arrays from a larger array
DON'T split them into separate, named arrays. This is just a bad way to write code. It will create buggy, slow code, even if you...

fast 4 Jahre vor | 0

Beantwortet
How to plot this implicit function? (It's one parameter also changes)
The vertical axis indicates the value of phi. F3 = @(x,y,phi) y.^4 + y.^2.*(2*x.*tan(phi)-1) + x.^2.*sec(phi).^2; fimplicit3...

fast 4 Jahre vor | 0

Beantwortet
How to find limit of a function
What you have written is NOT a sequence, but a function of one variable. If you are asking how to find the limit of that functio...

fast 4 Jahre vor | 0

Beantwortet
How to obtain an input-output relation for NN trainNetwork or similar functions
This is a common question, where someone wants to see a simple function they can write down and understand, from a complex tool....

fast 4 Jahre vor | 1

| akzeptiert

Mehr laden