photo

Thomas Pursche


Last seen: 9 jours il y a Actif depuis 2021

Followers: 0   Following: 0

Programming Languages:
Python, MATLAB

Statistiques

All
MATLAB Answers

0 Questions
7 Réponses

Cody

0 Problèmes
124 Solutions

RANG
132 449
of 300 759

RÉPUTATION
0

CONTRIBUTIONS
0 Questions
7 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
 of 21 081

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
1 429
of 170 900

CONTRIBUTIONS
0 Problèmes
124 Solutions

SCORE
1 841

NOMBRE DE BADGES
12

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Review
  • First Answer
  • Draw Letters
  • CUP Challenge Master
  • Community Group Solver
  • Introduction to MATLAB Master
  • Commenter
  • Promoter
  • Solver

Afficher les badges

Feeds

Afficher par

A résolu


Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F(n) = F(n-1) + F(n-2) * where F(1) = 1 and F(1)...

environ un mois il y a

A résolu


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Input...

environ un mois il y a

A résolu


Flip the main diagonal of a matrix
Given a n x n matrix, M, flip its main diagonal. Example: >> M=magic(5); >> flipDiagonal(M) 9 24 1 ...

environ un mois il y a

A résolu


Back to basics 21 - Matrix replicating
Covering some basic topics I haven't seen elsewhere on Cody. Given an input matrix, generate an output matrix that consists o...

environ un mois il y a

A résolu


Remove NaN ?
input -> matrix (n*m) with at least one element equal to NaN; output -> matrix(p*m), the same matrix where we deleted the enti...

environ un mois il y a

Réponse apportée
The Matlab OPC UA Client does not connect to the OPC UA Server (OPC CoDeSys V3)
Hi all, I encountered a similar problem. I wanted to connect to an OPCUA server that was running on a different machine. Connec...

5 mois il y a | 0

Réponse apportée
Connect to OPC UA server with OPC Toolbox
Hi all, I encountered a similar problem. I wanted to connect to an OPCUA server that was running on a different machine. Connec...

5 mois il y a | 0

Réponse apportée
Is it possible to orient the legend's symbols vertically instead of horizontally?
Hi, yes it is possible. Just change legend([h1, h2], 'sin(x)', 'cos(x)'); to legend([h1, h2], 'sin(x)', 'cos(x)','Orie...

9 mois il y a | 0

Réponse apportée
Matlab execuatable with OPC-UA
Hi, firtst of all you need the Industrial communication Toolbox, to use all the OPCUA functionality. Second you need Compile...

9 mois il y a | 0

Réponse apportée
Getting Nodes from OPCUA server and read them
Hi, I got the same problem when I was trying to crawl automatically a server and gather all wanted information about the exis...

9 mois il y a | 0

A résolu


Calculate area of sector
A=function(r,seta) r is radius of sector, seta is angle of sector, and A is its area. Area of sector A is defined as 0.5*(r^2...

11 mois il y a

A résolu


Convert given decimal number to binary number.
Convert given decimal number to binary number. Example x=10, then answer must be 1010.

plus d'un an il y a

A résolu


Mass Conversion 1

environ 3 ans il y a

A résolu


Temperature Conversion 3

environ 3 ans il y a

A résolu


Temperature Conversion 2

environ 3 ans il y a

A résolu


Temperature Conversion 1

environ 3 ans il y a

A résolu


Find Closest Constant
Given a number x, return the value that is closest to x from this list of constants: 0, 1, , e, , (also known as ). For exampl...

environ 3 ans il y a

A résolu


Calculating Student Grades
The matrix grades contains raw grades for 7 students who took your course. Each row represents a different student. The first 7 ...

environ 3 ans il y a

A résolu


Dog Statistics
The vectors ht and wt contains the heights and weights of 20 golden retrievers. In some cases, it was not possible to make both ...

environ 3 ans il y a

A résolu


Calculate the mean of each half of a matrix
Given a matrix with an even number of columns, n, return a 1-by-2 row vector where the first element is the mean of all the elem...

environ 3 ans il y a

A résolu


Create an arrow matrix
An arrow matrix is a square matrix that contains ones on the diagonal, the last column, and last row. ...

environ 3 ans il y a

A résolu


Generate this matrix
Generate the following matrix. n = 2; out = [-4 -3 -2 -1 0 -3 -2 -1 0 1 -...

environ 3 ans il y a

A résolu


Find the minimum of the column-maximums of a matrix
Given a matrix A, find the maximum value of each column, then return the smallest of those maximum values (ie return the minimum...

environ 3 ans il y a

A résolu


Matrix Quadrants
Write a function that takes N as the input, and outputs a matrix whose upper-left (NxN) quadrant contains all ones, the lower-ri...

environ 3 ans il y a

A résolu


String Array Basics, Part 2: Convert String Array to Cell Array; No Missing Values
<http://www.mathworks.com/help/matlab/characters-and-strings.html String array> and cell array are two types of containers for s...

plus de 3 ans il y a

A résolu


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

plus de 3 ans il y a

Réponse apportée
Connect matlab to OPC UA server
Hello together, I had a similar problem. It seems that maybe at the moment Matlab is only able to connect to OPC servers runn...

plus de 3 ans il y a | 0

Réponse apportée
Smallest interval in array
Hello Pesach, when I understood it correctly please find in the following a first approach. Just read in the table, get the spe...

plus de 3 ans il y a | 0

A résolu


Remove the air bubbles
Given a matrix a, return a matrix b in which all the zeros have "bubbled" to the top. That is, any zeros in a given column shoul...

presque 5 ans il y a

A résolu


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

presque 5 ans il y a

Charger plus