photo

Dave Walter


2014년부터 활동

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

16 질문
4 답변

Cody

0 문제
17 답안

순위
4,610
of 300,786

평판
11

참여
16 질문
4 답변

답변 채택
31.25%

획득한 표
11

순위
 of 21,091

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
27,500
of 171,061

참여
0 문제
17 답안

점수
190

배지 수
2

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

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

배지 보기

Feeds

보기 기준

답변 있음
Simulink Project Git error with Bitbucket git: git: cannot open git-receive-pack
I think you can work around this issue by using an ssh link to clone your repositories as opposed to https. See the following l...

거의 8년 전 | 0

질문


Change simulink port location of signal after dragging block into "Create Subsystem"
Often times when I create a subsystem from a group of Simulink blocks, the inport and outports have the signals entering into th...

8년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Reordering Quick Insert Search Results in Simulink
Is there a way to reorder the results from Quick Insert (where you click on whitespace and start typing the block name)? I us...

거의 9년 전 | 답변 수: 0 | 0

0

답변

질문


When using 'sim' in a for loop in accelerator mode I get an 'accelbuild' error after 5,6 or sometimes 18 iterations.
I am doing a Monte Carlo simulation of a simulink model with Matlab 2015b using the sim command SimOuts = sim(ModelName, 'L...

거의 9년 전 | 답변 수: 0 | 0

0

답변

답변 있음
Simulink Project Cloned Repository not keeping configuration
The issue is a compatibility issue between 2014b and 2015b. When the original Simulink Project was created and pushed to a remo...

9년 초과 전 | 0

| 수락됨

질문


Error when generating S-function from subsystem with Stateflow chart and Function Call outputs
I am getting an error when generating a S-function for a subsystem containing a Stateflow chart with Event outputs to drive othe...

9년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Using set_param with Configuration Set Reference
I have a medium sized Simulink project using Configuration Reference to tie all the submodels (Model Reference) to one Configura...

9년 초과 전 | 답변 수: 1 | 1

1

답변

답변 있음
Are there any examples of how to use the Simulink Real-Time XCP library?
If you type speedgoatdoc at the command line and select "Examples" it will have several IO601 CAN examples (message lo...

9년 초과 전 | 0

질문


How to use quiver3m with usamap() in Mapping Toolbox
I cannot get quiver3m to work with usamap(latlim, lonlim) in Mapping toolbox. plot3m works fine. figure() usamap([34.02...

9년 초과 전 | 답변 수: 0 | 0

0

답변

질문


How do I open the Code Generation Report after it's been closed?
I generate the C code using ctrl-B and the Code Generation Report opens. I can see all the *.css, *.html, and *.js files under ...

9년 초과 전 | 답변 수: 2 | 0

2

답변

질문


Currently getting a domain error when running Simulink code. No indication where the error is occurring.
I'm getting the following error when running my simulink code: Domain error. To compute complex results from real x, use 'a...

거의 10년 전 | 답변 수: 2 | 1

2

답변

질문


Simulink Project Git error with Bitbucket git: git: cannot open git-receive-pack
We recently transition to BitBucket for our source control needs. Simulink Project shows a dialog box error when using those gi...

거의 10년 전 | 답변 수: 1 | 6

1

답변

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

질문


Running Simulink Blocks without License in Collaborative Project
I am working on a collaborative project where I have blocks utilizing special tools - in this case Stateflow. Another collabora...

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Using Mask Initialization and Parameter with Data Dictionaries
I currently have a system using Model Reference for subsystems and Data Dictionaries to maintain variables. I would like to mas...

10년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Implementing Model Reference, Data Dictionaries, and Buses
Hello, I have a large model with multiple collaborators. We have a system bus defined as well as several submodels using mo...

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Simulink Project Cloned Repository not keeping configuration
I'm cloning a Simulink Project from git revision control. On my original workstation I have all the Model Configuration paramet...

10년 초과 전 | 답변 수: 2 | 0

2

답변

질문


Integrating Libraries with Simulink Project and Git
I have 2 Simulink projects that would like to use components from a shared in-house Simulink library. The Simulink Projects are...

10년 초과 전 | 답변 수: 0 | 2

0

답변

더 보기