Community Profile

photo

ddd ppp


Last seen: 거의 3년 전 2017년부터 활동

통계

All
  • Thankful Level 3
  • First Answer
  • Promoter
  • Speed Demon
  • Creator
  • Commenter
  • Solver

배지 보기

Content Feed

보기 기준

질문


Cant launch matlab after installation and activation inside non admin windows 10 acct.
Matlab opens fine from my admin acct, but does not open from a standard user on my windows 10 computer. I activated it as a stan...

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

0

답변

답변 있음
Where is the recursion?
thanks

대략 5년 전 | 0

질문


Where is the recursion?
I am getting an infinite loop and running out of memory here. Please help find the recursion. I have not used matlab in a while....

대략 5년 전 | 답변 수: 2 | 0

2

답변

질문


What are some things you wish you knew when you were new to matlab?
I just saw that in a long for loop where end is out of the page, if you mouse over the for, the line of the end appears on the b...

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

1

답변

질문


Whats the use of an inline function (function at end of script)?
is the primary benefit not having extra function files for a script?

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

1

답변

답변 있음
what does the red dot on the line number in matlab mean?
OMG IT MEANS TO STOP ON THE LINE. that is so useful

거의 6년 전 | 1

질문


what does the red dot on the line number in matlab mean?
what does the red dot on the line number in matlab mean? A picture is included. <</matlabcentral/answers/uploaded_files/11599...

거의 6년 전 | 답변 수: 2 | 0

2

답변

질문


help with prettyprint or mlx display
Im trying to use pretty print for a long equation line and its not working. also, the documentation says: pretty is not re...

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

0

답변

질문


why does this short for loop crash?
for i=1:33, matlab crashes. This loop might crash too. Is there a simple error here? tlist=0 dt =.1 for i=1:5 tlis...

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

0

답변

질문


simplest way to build a series of numbers inside a for loop
im trying to build a series of numbers inside a for loop. here is what i used to do this. t=0 dt=.1 ii=0 for i=1:10 ...

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

1

답변

문제를 풀었습니다


kmph to mps
convert kilometer per hour to meter per second

거의 6년 전

문제를 풀었습니다


The maximum sum of squares (testing)
Create a function file with an input maxval to determine the maximum number of terms for the series 1^2 + 2^2 + 3^2 + ... such t...

거의 6년 전

문제


The maximum sum of squares (testing)
Create a function file with an input maxval to determine the maximum number of terms for the series 1^2 + 2^2 + 3^2 + ... such t...

거의 6년 전 | 2 | 솔버 수: 40

문제를 풀었습니다


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

거의 6년 전

문제를 풀었습니다


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

거의 6년 전

문제를 풀었습니다


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

거의 6년 전

문제를 풀었습니다


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

거의 6년 전

질문


Commenting out large sections does not work sometimes
hi, im trying to comment out this text: Write a MATLAB script that will load a *.csv (comma separated value) file containi...

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

1

답변

문제를 풀었습니다


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

6년 초과 전

문제를 풀었습니다


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

6년 초과 전

문제를 풀었습니다


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

6년 초과 전

문제를 풀었습니다


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

6년 초과 전

문제를 풀었습니다


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

6년 초과 전

문제를 풀었습니다


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

6년 초과 전

문제를 풀었습니다


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

6년 초과 전

문제를 풀었습니다


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

6년 초과 전

문제를 풀었습니다


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

6년 초과 전

문제를 풀었습니다


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

6년 초과 전

문제를 풀었습니다


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

6년 초과 전

문제를 풀었습니다


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

6년 초과 전

더 보기