photo

Manuel


Last seen: 2 Monate vor Aktiv seit 2013

Followers: 0   Following: 0

Nachricht

Professional Interests: robotics, simmechanics

Statistik

All
  • Revival Level 1
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
DAQ - Simulink NI myDAQ
https://de.mathworks.com/matlabcentral/answers/330174-ni-mydaq-simulink-toolbox

mehr als 6 Jahre vor | 0

Beantwortet
Import elements of an array from workspace
Have you already tried using a LookUp table? regards mscharff

mehr als 6 Jahre vor | 0

Frage


Simscape Multibody Link - MATLAB R2017b & PTC Creo 4.0 - Error Message
Hello everyone, I would like to use Simscape Multibody Link with Creo 4.0 M20. I have installed the software as described in...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How do you draw addtional graphic objects in Mechanic Explorer, Simmechanics G2
Has anybody a solution for this Problem? I would like to use it for documentation (some lines, maybe a little bit text...) ...

fast 8 Jahre vor | 0

Gelöst


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

etwa 8 Jahre vor

Gelöst


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

etwa 8 Jahre vor

Kanal


Test
Test für Sous Vide

etwa 8 Jahre vor

Gelöst


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

etwa 8 Jahre vor

Gelöst


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

etwa 8 Jahre vor

Gelöst


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

mehr als 8 Jahre vor

Gelöst


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

mehr als 8 Jahre vor

Gelöst


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

mehr als 8 Jahre vor

Gelöst


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

mehr als 8 Jahre vor

Gelöst


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...

mehr als 8 Jahre vor

Gelöst


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

mehr als 8 Jahre vor

Gelöst


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

mehr als 8 Jahre vor

Gelöst


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

mehr als 8 Jahre vor

Gelöst


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

mehr als 8 Jahre vor

Gelöst


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

mehr als 8 Jahre vor

Gelöst


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...

mehr als 8 Jahre vor

Beantwortet
DAQ - Simulink NI myDAQ
is the following Information correct? from https://www.linkedin.com/groups/How-interface-NImyDAQ-Matlab-134533.S.22791...

mehr als 9 Jahre vor | 0

Frage


DAQ - Simulink NI myDAQ
Hi, i want to measure analog and digital Signals in Simulink with an NI myDAQ Device. http://www.ni.com/mydaq I u...

mehr als 9 Jahre vor | 4 Antworten | 1

4

Antworten

Gelöst


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 ...

mehr als 10 Jahre vor

Gelöst


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

fast 11 Jahre vor

Gelöst


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

etwa 11 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

etwa 11 Jahre vor

Gelöst


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...

etwa 11 Jahre vor

Gelöst


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:...

etwa 11 Jahre vor