photo

Just Manuel


Last seen: environ 2 ans il y a Actif depuis 2021

Followers: 0   Following: 0

Software Test Engineer

Statistiques

All
MATLAB Answers

2 Questions
17 Réponses

File Exchange

2 Fichiers

Cody

0 Problèmes
2 Solutions

RANG
1 827
of 299 232

RÉPUTATION
36

CONTRIBUTIONS
2 Questions
17 Réponses

ACCEPTATION DE VOS RÉPONSES
50.0%

VOTES REÇUS
2

RANG
16 202 of 20 670

RÉPUTATION
7

CLASSEMENT MOYEN
5.00

CONTRIBUTIONS
2 Fichiers

TÉLÉCHARGEMENTS
2

ALL TIME TÉLÉCHARGEMENTS
27

RANG
78 576
of 163 831

CONTRIBUTIONS
0 Problèmes
2 Solutions

SCORE
30

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 2
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • 5-Star Galaxy Level 1
  • First Submission
  • First Answer
  • Revival Level 1

Afficher les badges

Feeds

Afficher par

Réponse apportée
Creating Output.m file from Work.m file - unexpected output
The part "model('" + component_prefix + component_number + "').system('" + sys_prefix + sys_numbers + "', 'test')"; creates a...

environ 3 ans il y a | 0

| A accepté

Réponse apportée
fill/patch interpolate alpha
Oh well... it turned out I acutually was missing something... for patch, it is even documented: https://ch.mathworks.com/help/m...

environ 3 ans il y a | 0

| A accepté

Question


fill/patch interpolate alpha
Hi I'm not sure if i'm hitting a limitation of matlab here, or if I'm actually missing something. What i'm trying to do: Supp...

plus de 3 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
I am trying to find the root mean square error(RMSE) but i am getting this error when I tried to find the output in command window 'Unrecognized function or variable 'Hot_Output'.
That's a question of variable scope. Variables declared in a function are only visible within the function that declared it. If...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Z must be a matrix, not a scalar or vector.
Well, have a look, what X, Y and Z are that allow you to make a surface. Meshgrid gives you matrices for X and Y, thus Z is als...

plus de 4 ans il y a | 0

Réponse apportée
Error while sub plotting
your problem lies here: X2 = (0:0:10); X4 = (0:0:20); X8 = (0:0:47); X16 = (0:0:85); X32 = (0:0:180); when you specify zer...

plus de 4 ans il y a | 1

Réponse apportée
data fitting to equation
Refer to this answer from Star Strider: https://ch.mathworks.com/matlabcentral/answers/126146-curve-fitting-without-the-toolbox...

plus de 4 ans il y a | 0

Réponse apportée
What are symbolic variables in MATLAB? How they are different from normally used variables?
try the matlab help: syms Cheers Manuel

plus de 4 ans il y a | 0

Réponse apportée
Area calculation of circle projection on cylindric surface
@darova already gave you an answer using the pde package. I followed through the Idea I gave you in the comment: Try calcula...

plus de 4 ans il y a | 0

Réponse apportée
how to estimate/evaluate the integral of a constant value function?
Try this: syms t f = 0*t + 10; int(f); Cheers Manuel

plus de 4 ans il y a | 0

Réponse apportée
SCATTER PLOT DIFFERENT COLOURS
Split your x/y data into two sets; one for right, one for left, then plot those. x_left = COP_num(COP_num(:,3) == 0,4); y_left...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How to do least square error estimation to find the coeffcient values for a quadratic type equation with set of constraints on coefficients
I love this answer from Star Strider: https://ch.mathworks.com/matlabcentral/answers/126146-curve-fitting-without-the-toolbox T...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
save .csv file in given folder
Just provide an absolute path instead of a relative one. Such as csvwrite('c:\temp\data.csv',ones(2,5)); You can also combine...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
How to count and plot the number of points in a grid?
Hehe, being curious and doing the stuff mathworks slaps in your face sometimes pays off ;) (I mean the community treasure hunt) ...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Random array Coordinates for certain elements
Well, you're almost there. just pick a random pair from row and column % i'm just generating a random house here house = rand...

plus de 4 ans il y a | 0

| A accepté

A résolu


Find the biggest empty box
You are given a matrix that contains only ones and zeros. Think of the ones as columns in an otherwise empty floor plan. You wan...

plus de 4 ans il y a

A résolu


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

plus de 4 ans il y a

Réponse apportée
Taking punctual values of array
I assume you have defined n somewhere in that manner: n = [64, 256, 1024]; in this line LRIS(k,z)=((sqr...

plus de 4 ans il y a | 1

Réponse apportée
fftfilt function inputs and output
The short answer: Feed your data in time domain to fftfilt and you will receive filtered data in time domain. The pedantic a...

plus de 4 ans il y a | 0

| A accepté

Question


Split array into chunks based on trigger values in another array
Hi all I've searched for a bit, found some related questions, but none that want to achieve exactly what i want (point me towar...

plus de 4 ans il y a | 1 réponse | 0

0

réponse

A soumis


Independent Linkaxes
Functionality extension of the linkaxes command

plus de 4 ans il y a | 1 téléchargement |

5.0 / 5
Thumbnail

A soumis


LinkZoom
Synchronize zoom of specified 2-D axes

plus de 4 ans il y a | 1 téléchargement |

0.0 / 5

Réponse apportée
Multi x plot, linked zoom and indipendent pan
I've run into the same problem. There does not seem to be a convenient way to do this. I have worked around it using ActionPreCa...

plus de 4 ans il y a | 0