photo

Michael


Bachmann electronic GmbH

Last seen: 10 Tage vor Aktiv seit 2012

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

1 Frage
11 Antworten

Cody

0 Probleme
10 Lösungen

RANG
2.821
of 300.369

REPUTATION
22

BEITRÄGE
1 Frage
11 Antworten

ANTWORTZUSTIMMUNG
100.0%

ERHALTENE STIMMEN
3

RANG
 of 20.936

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
38.062
of 168.436

BEITRÄGE
0 Probleme
10 Lösungen

PUNKTESTAND
111

ANZAHL DER ABZEICHEN
1

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Knowledgeable Level 2
  • 3 Month Streak
  • First Answer
  • Thankful Level 1
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
how to generate an infinitely running code in simulink embedded coder?
Normally you only have to set the "Stop time" in the Configuration Parameters --> Solver option or directly in the model to "inf...

7 Monate vor | 0

Beantwortet
Can you call Simulink models recursively?
Hi Jan, I am not sure if I understand you correctly. But maybe this could be a solution for your task?

11 Monate vor | 0

| akzeptiert

Beantwortet
Calculate Mean of vector in more decimals
3.3333 is only the display of the variable 'ans'. The result of the calculation has better accuracy. Type format long and you ...

mehr als ein Jahr vor | 0

| akzeptiert

Beantwortet
Conditional Question Matlab Disagreement
I think you are right and your teacher is wrong. MATLAB evaluates this expression from the left to the right (see chapter "Oper...

etwa 2 Jahre vor | 1

Beantwortet
Is there a 64 bit version of Matlab 2015a available for download?
Dont't worry about the labeling of the button for downloading in the MathWorks homepage. If you are running the installing appli...

etwa 2 Jahre vor | 0

Beantwortet
How to set a sample time in a Discrete Transfer Fcn??
Per default the sample time of this block is (-1). This means the sample time is inherited from the signal at the input of the b...

etwa 2 Jahre vor | 1

Beantwortet
Code generation with Embedded Coder
I think this is an issue of the block reduction optimization. In the configuration parameters move to Simulation Target --> ......

etwa 2 Jahre vor | 0

Beantwortet
Target Language Compiler (TLC) alternatives for custom inline L2 sfunctions in Simulink.
As far as I know there is no possibility to generate C/C++ code from a Level -2 MATLAB S-Function without writing an associated ...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
Datetime arithmetic in simulink
You can do some arithmetics with datetime data type. For your example it is possible to add a duration to a datetime. dt0 = dat...

etwa 2 Jahre vor | 0

Beantwortet
Matrix array in a strange format
Your matrix "val" is a sparse matrix. You can convert it to a full storage matrix with the function "full". A = full(val)

etwa 2 Jahre vor | 0

Beantwortet
how to find unconnect goto block and from block in the simulink model use script
I think you should find a matching of the "GotoTag" in Goto blocks and From blocks. First find all your Goto and From blocks in...

etwa 2 Jahre vor | 0

| akzeptiert

Frage


How to change horizontal alignment of column names in UITable
I know I can use the uistyle function to change the horizontal alignment of text of each cell of an UITable. But I am struggling...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Gelöst


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

etwa 4 Jahre vor

Gelöst


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

mehr als 6 Jahre vor

Gelöst


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

mehr als 13 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 13 Jahre vor

Gelöst


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

mehr als 13 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...

mehr als 13 Jahre vor

Gelöst


Is my wife right?
Regardless of input, output the string 'yes'.

mehr als 13 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 13 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 ...

mehr als 13 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:...

mehr als 13 Jahre vor