Community Profile

photo

elias GR


Last seen: 5 mois il y a Actif depuis 2012

Followers: 0   Following: 0

Contact

Statistiques

All
  • First Review
  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer
  • Quiz Master
  • Creator
  • Commenter
  • Promoter
  • Solver

Afficher les badges

Feeds

Afficher par

A répondu
How to get the the arrow length as legend in quiver function ?????
I had the same problem. I finally used the following workaround: 'hold on' the figure and use the 'quiver' command again in orde...

environ 6 ans il y a | 3

| A accepté

A répondu
How to speed up a for loop ?
If A have 3 rows and n columns, try that: angle=asin(A(3,:))./(sqrt(A(3,:).^2+A(2,:).^2+A(1,:).^2));

plus de 7 ans il y a | 0

A répondu
Hello, I have been trying to surf two parallel circles but data dimensions don't match and I don't know why. Any help would be nice. Thank you, Omar
Furthermore, surf is not the right command to do what you want. Try the following instead: fill3(X(1,:),Y(1,:),Z(1,:),'r') ...

plus de 7 ans il y a | 0

| A accepté

A répondu
Hello, I have been trying to surf two parallel circles but data dimensions don't match and I don't know why. Any help would be nice. Thank you, Omar
Erase Z=[Z;Z]; This is not needed because X already have 2 rows and size(X)=[2 100]

plus de 7 ans il y a | 0

A répondu
Solving Poisson type of equation, increasing tolerance requirement leads to no response
The solution does not converge. It does not converge even with the 10-5 tolerance. You should print the max variable at each ste...

plus de 7 ans il y a | 0

A répondu
transform matrices into a single matrix?
Make a 3D matrix. If your 6x6 matrices are in the variables A1,A2,...,A20, then: A=zeros(6,6,20); A(:,:,1)=A1; A(:,:,...

plus de 7 ans il y a | 0

A répondu
How do I store output from double for loops, I only get the last iteration?
flygplatsmetar = cell(1,length(Data)); %initialize your 1D cell array for l = 1:length(Data) ... flygplatsmetar...

plus de 7 ans il y a | 0

A répondu
How to assign two values randomly among 2 variables?
r=rand; %random number between 0 and 1 if r<0.5 sensor1 = c1; sensor2 = c2; else sensor1 = c2; ...

plus de 7 ans il y a | 0

A répondu
How to colour some node in a graph
Take a look here <https://www.mathworks.com/help/matlab/ref/plot.html?searchHighlight=plot#inputarg_LineSpec> You can give als...

plus de 7 ans il y a | 0

A répondu
How to remove a pattern in a table column
strfind function is what you need ( <https://www.mathworks.com/help/matlab/ref/strfind.html> ). I suppose that you have a cell a...

plus de 7 ans il y a | 0

A répondu
Error calculation and using for loop
# You need to put your code inside a function, in order x and n to be parameters. # You can estimate the true value by just us...

plus de 7 ans il y a | 0

A répondu
trying with bisection method to create a function that finds the root of an equation, approximated error, and numbers of iteration
A first problem in your code is that the returned variable "root" does not always take a value. A second one is the "i= i+1;". i...

plus de 7 ans il y a | 0

| A accepté