photo

Jakub Rysanek


...

Last seen: plus de 4 ans il y a Actif depuis 2014

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

1 Question
10 Réponses

File Exchange

2 Fichiers

Cody

10 Problèmes
413 Solutions

RANG
3 019
of 301 637

RÉPUTATION
20

CONTRIBUTIONS
1 Question
10 Réponses

ACCEPTATION DE VOS RÉPONSES
0.0%

VOTES REÇUS
5

RANG
8 090 of 21 366

RÉPUTATION
112

CLASSEMENT MOYEN
5.00

CONTRIBUTIONS
2 Fichiers

TÉLÉCHARGEMENTS
3

ALL TIME TÉLÉCHARGEMENTS
1075

RANG
523
of 175 891

CONTRIBUTIONS
10 Problèmes
413 Solutions

SCORE
3 700

NOMBRE DE BADGES
7

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Triathlon Participant
  • Knowledgeable Level 1
  • First Answer
  • Quiz Master
  • Leader
  • Personal Best Downloads Level 1
  • First Review
  • 5-Star Galaxy Level 1
  • First Submission
  • Puzzler
  • Commenter
  • Speed Demon

Afficher les badges

Feeds

Afficher par

Réponse apportée
Differentiation without symbolic toolbox. Is it possible numerically?
<https://www.mathworks.com/matlabcentral/fileexchange/59438-symbolic-derivatives>

plus de 9 ans il y a | 0

Question


M2014b+ graphics, changing legend orientation ex post
Under new Matlab graphics, changing the legend orientation does not work well if the legend was created with all 4 output argume...

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

1

réponse

Réponse apportée
Orange Color isolate from the image
You can define a set of RGB codes that define "orange" color and then apply image thresholding like this: % Load image from...

plus de 9 ans il y a | 0

Réponse apportée
how to do differentiation?
If you do not have access to Symbolic Math Toolbox, you may want to use one of my recent FileExchange submissions: <http://ww...

plus de 9 ans il y a | 0

Réponse apportée
Problem with solving equation with 'FSOLVE'
To me it appears that the initial conditions to your optimization problem must lie within a specific, perhaps bounded, region. F...

plus de 9 ans il y a | 0

Réponse apportée
How can I maintain zoom ratio in refreshing plot?
You can assign a user-defined callback function to the zooming tool: figure; plot(1:10); zz = zoom(); set(...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
Rotate the plot at 45 degree
I would simply rotate all data using the planar (2D) transform with respect to the origin: angle = pi/4; reference_line ...

plus de 9 ans il y a | 1

Réponse apportée
How to insert image in MatLab
imread() can import whole bunch of graphical data types, including .jpg and .png. Conversion to .png, as you ask, is not necessa...

plus de 9 ans il y a | 2

Réponse apportée
How to setup legend for a figure with two axes (left and right)?
You can create the legend using the handles of your line objects: l1=line('parent',ax(1),'xdata',x,'ydata',y11,'color','b')...

plus de 9 ans il y a | 2

| A accepté

Réponse apportée
Please help me to solve this newton-raphson method
In this case I would go with roots([1,-16.05,88.75,192.0375,116.35,31.6875])

plus de 9 ans il y a | 0

Réponse apportée
Solving linear systems with the QR factorisation
[1] If the solution of Ax=b is believed to be unique: [qq,rr] = qr(A); x = rr\qq.'*b; [2] If the system Ax=b has ...

plus de 9 ans il y a | 0