photo

Marc Jakobi


Vela Solaris

Last seen: presque 3 ans il y a Actif depuis 2013

Followers: 0   Following: 0

Message

Software innovation for the renewable energy sector.

Statistiques

All
MATLAB Answers

41 Questions
114 Réponses

File Exchange

20 Fichiers

Cody

16 Problèmes
249 Solutions

RANG
299
of 300 365

RÉPUTATION
294

CONTRIBUTIONS
41 Questions
114 Réponses

ACCEPTATION DE VOS RÉPONSES
80.49%

VOTES REÇUS
76

RANG
3 512 of 20 933

RÉPUTATION
441

CLASSEMENT MOYEN
4.90

CONTRIBUTIONS
20 Fichiers

TÉLÉCHARGEMENTS
29

ALL TIME TÉLÉCHARGEMENTS
2744

RANG
729
of 168 262

CONTRIBUTIONS
16 Problèmes
249 Solutions

SCORE
2 785

NOMBRE DE BADGES
10

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Triathlon Participant
  • Scavenger Finisher
  • 3 Month Streak
  • Thankful Level 4
  • Quiz Master
  • Promoter
  • Personal Best Downloads Level 2
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 3
  • First Submission
  • Revival Level 1

Afficher les badges

Feeds

Afficher par

A soumis


mtype340
Model of a thermal storage tank based on the TRNSYS "MULTIPORT Store-Model" Type 340 by H. Drueck

environ 4 ans il y a | 1 téléchargement |

4.5 / 5
Thumbnail

A soumis


spidentify
Indentifies subplots in figure h

presque 6 ans il y a | 1 téléchargement |

5.0 / 5

A soumis


expandaxes
More reliable implementation of the option "expand axes to fill figure"

presque 6 ans il y a | 3 téléchargements |

5.0 / 5
Thumbnail

Réponse apportée
Run Matlab without Admin rights?
This thread is a bit old, but I had the same problem and just found a solution. It's related to this <https://ch.mathworks.com/...

presque 8 ans il y a | 6

A soumis


Cell resolved Matlab OOP model of a lithium iron phosphate battery pack
Collection of classes stored in a package "lfpBattery".

environ 8 ans il y a | 3 téléchargements |

0.0 / 5
Thumbnail

Réponse apportée
Matlab R2017b has problems with GIT and the configuration file when starting.
Thanks to Mathworks support: I had my MATLAB_PATH environment variable pointing to jre7 (I had set it manually because of an ...

environ 8 ans il y a | 2

Question


Matlab R2017b has problems with GIT and the configuration file when starting.
Hi, When I open Matlab R2017b (after a fresh install), it fails to start GIT and to read the desktop config file. I get the b...

environ 8 ans il y a | 1 réponse | 0

1

réponse

A soumis


TCP/IP client/server connection between Matlab and IEC 16499 CLIENT/SERVER FBs running on FORTE
The transferred byte-data is automatically translated to the respective data types.

environ 8 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A soumis


shortcut2figtool
function for creating shortcuts to figure toolbar buttons (useful for docked figures)

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

0.0 / 5
Thumbnail

A soumis


MrcJkb/tldeccheck
For adjusting the amount of decimals in TickLabels

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

5.0 / 5
Thumbnail

A soumis


TODOS
Use tags in code comments to create notes/todos and display links to them in the command window.

plus de 8 ans il y a | 4 téléchargements |

5.0 / 5
Thumbnail

A soumis


lockPointer
Locks the cursor horizontally or vertically

plus de 8 ans il y a | 2 téléchargements |

0.0 / 5

A résolu


Sorting
Assume that x is an n-by-2 matrix. The aim is to return the first column of x, but sorted according to the second column. Exa...

presque 9 ans il y a

A résolu


Vectorizing, too easy or too hard?
Please insert a . before any ^, * or / in the string. That's it!!

presque 9 ans il y a

A résolu


does it touch ?
given a sentence, tell how much it touches. input : string output : how much it touches touching : a bilabial phoneme d...

presque 9 ans il y a

A résolu


Multiply a column by a row
* Given a column vector C and and a row vector R. * Output a matrix M. * Every column of M equals to C multiplied by correspon...

presque 9 ans il y a

A résolu


Multi-line comments
* Fix the syntax errors.

presque 9 ans il y a

A résolu


Derive Me Crazy
Given a polynomial, output its derivative. Example: input = [1 0 0] % x^2 output = [2 0] % 2x

presque 9 ans il y a

A résolu


Marvel or DC?
Given input vector determine if there's a DC value. If there is, output 'DC', else output 'MARVEL'

presque 9 ans il y a

A résolu


Who is the smartest MATLAB programmer?
Who is the smartest MATLAB programmer? Examples: Input x = 'Is it Obama?' Output = 'Me!' Input x = 'Who ?' Ou...

presque 9 ans il y a

A résolu


I told you not separate me, but you did :( - ACDC
Given input vector, output it's DC and AC value Example: input = 0 1 -1 0 ac = 0 1 -1 0 dc = 0

presque 9 ans il y a

A résolu


Solve the Sudoku Row
*Description* A simple yet tedious task occurs near the end of most Sudoku-solving algorithms, computerized or manual. The ta...

presque 9 ans il y a

A résolu


Get all prime factors
List the prime factors for the input number, in decreasing order. List each factor. If the prime factor occurs twice, list it as...

presque 9 ans il y a

Réponse apportée
Colorbar not plotting the right colours
You cannot create a colorbar for bar() graphs in Matlab. What you can do is use a loop to create a separate bar graph for each ...

presque 9 ans il y a | 0

Réponse apportée
How does one save a struct type to an individual cell inside a table?
Have you tried converting the struct to a cell? doc struct2cell

presque 9 ans il y a | 0

A résolu


length of string on cylinder
A cylinder H cm high has a circumference of C cm. A string makes exactly N complete turns round the cylinder while its two ends ...

presque 9 ans il y a

A résolu


Binary
Given a positive, integer n, create a function that returns the respective binary number in the form of a vector. Example: ...

presque 9 ans il y a

A résolu


Cody Matlab Version
What is the current Cody Matlab Release? *Output:* string *Examples:* '(R2012a)' or 'R2012a' Hint: We have mo...

presque 9 ans il y a

A résolu


Make sorting matrix without sort function.
It is very valuable for student to simple sorting program because they learn about use of loop and if-statement. Sort given inpu...

presque 9 ans il y a

A résolu


Create an index-powered vector
Given a input vector x, return y as index-powered vector as shown below. Example x = [2 3 6 9] then y should be [...

presque 9 ans il y a

Charger plus