Réponse apportée
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...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
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 ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 3 ans il y a | 1

Réponse apportée
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...

plus de 3 ans il y a | 0

Réponse apportée
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...

plus de 3 ans il y a | 3

| A accepté

Réponse apportée
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...

plus de 3 ans il y a | 0

Réponse apportée
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.) ...

plus de 3 ans il y a | 1

Réponse apportée
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...

plus de 3 ans il y a | 0

Réponse apportée
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...

plus de 3 ans il y a | 0

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

plus de 3 ans il y a | 1

Réponse apportée
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])

plus de 3 ans il y a | 2

| A accepté

Réponse apportée
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...

plus de 3 ans il y a | 0

Réponse apportée
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...

plus de 3 ans il y a | 0

Réponse apportée
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...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 3 ans il y a | 0

Réponse apportée
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...

plus de 3 ans il y a | 0

Réponse apportée
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...

plus de 3 ans il y a | 0

Réponse apportée
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....

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
How can i take the log2 of x plus 1 of a matrix
What function in MATLAB gives the log, with base 2? help log2 So what line of code would add 1 to x, and then take the log, ba...

plus de 3 ans il y a | 0

Réponse apportée
Why ''int'' and ''integral'' return different answers
As others have said, the problem with integral is because of the singularities. Numerical methods don't like singularities. zzz...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to implement a description for variables in the code?
So you want a tooltip to appear, hovering over each variable or line of code, but have no explicitly written comments in the cod...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Interpolation for 2 dependent output data
Trivial. You just have TWO interpolation problems. Interpolate output1 as a function of the input. Then interpolate output2, als...

plus de 3 ans il y a | 0

Réponse apportée
In epsilon test for comparing equality of two numbers. How to improve the test?
Can you "improve" the test? What does improving it mean? How close do two numbers need to be considered the same? For example, ...

plus de 3 ans il y a | 0

Réponse apportée
Combination of two values in a list to get the value of an input value
Easy, peasy. Yet, this is very possibly homework. Yet, you have already gotten an answer, that is pure brute force, when a far b...

plus de 3 ans il y a | 0

Réponse apportée
convert equation to code
Your problem is that the cosine function produces only numbers between -1 and 1. That is another way of saying that acos ONLY wo...

plus de 3 ans il y a | 0

Réponse apportée
syms does not work on my matlab
Is there a reason why you decided to name a script syms, and then tried to use syms itself? What you did was confuse MATLAB, so ...

plus de 3 ans il y a | 2

| A accepté

Réponse apportée
No solution found. fsolve stopped because the problem appears to be locally singular.
You have a serious problem here, as I think you are having a problem using double precision arithmetic with this dynamic range o...

plus de 3 ans il y a | 0

Réponse apportée
How to extrapolate the data
Your model is only a quadratic polynomial. Why you needed to use a nonlinear regression is beyond me, when polyfit would have wo...

presque 4 ans il y a | 0

Réponse apportée
How to constrain the resulting equation from a polynomial surface fit to a positive range?
The lower bounds in fitoptions apply only to the coefficients of the polynomial. That has NOTHING to do with the value of the fu...

presque 4 ans il y a | 0

Réponse apportée
Best method to clear persistent variables
You can also use clear persistent Which will clear all persistent variables.

presque 4 ans il y a | 1

Charger plus