photo

Lukas


Last seen: environ 5 ans il y a Actif depuis 2012

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
5 Réponses

Cody

0 Problèmes
15 Solutions

RANG
3 053
of 300 392

RÉPUTATION
20

CONTRIBUTIONS
0 Questions
5 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
8

RANG
 of 20 934

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
31 473
of 168 373

CONTRIBUTIONS
0 Problèmes
15 Solutions

SCORE
150

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Revival Level 1
  • First Review
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
What's the best way to change a simulink library name?
What about this? % Find the library blocks in current system h = find_system(gcs,'LinkStatus','resolved'); origlib = get_para...

environ 5 ans il y a | 0

Réponse apportée
Apply several properties to subplots without duplicated lines
For example: to switch the grid on on all the axes in a current figure (gcf) arrayfun(@(x) grid(x,'on'), findobj(gcf,'Type','ax...

plus de 5 ans il y a | 1

Réponse apportée
How do I exit a loop with a key hit?
In a similar way I use wait bat cancel button: hWaitbar = waitbar(0, 'Iteration 1', 'Name', 'Solving problem','CreateCancelBtn'...

presque 6 ans il y a | 3

Réponse apportée
Device Driver Arduino CAN Bus Shield Simulink s-function
Try using this library: https://github.com/II43/arduino_CAN

presque 6 ans il y a | 0

Réponse apportée
Turn off compile mode
If the above commands doesn't help and you still see: model([],[],[],'term') Warning: Termination of 'model' deferred ...

environ 7 ans il y a | 4

A résolu


Find best placement for ordered dominoes (harder)
Given a list of ordered pairs, find the order they should be placed in a line, such that the sum of the absolute values of the d...

plus de 13 ans il y a

A résolu


Scoring for oriented dominoes
Given a list of ordered pairs, and the order they should be placed in a line, find the sum of the absolute values of the differe...

plus de 13 ans il y a

A résolu


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

plus de 13 ans il y a

A résolu


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

plus de 13 ans il y a

A résolu


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

plus de 13 ans il y a

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

plus de 13 ans il y a

A résolu


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

plus de 13 ans il y a

A résolu


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

plus de 13 ans il y a

A résolu


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

plus de 13 ans il y a

A résolu


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

plus de 13 ans il y a

A résolu


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

presque 14 ans il y a

A résolu


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

presque 14 ans il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

presque 14 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

presque 14 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

presque 14 ans il y a