Jayant
Followers: 0 Following: 0
Feeds
已回答
How to solve for the derivative using ode solver
Hello @Noya Linder, To obtain an array of dRdt and its corresponding t values correctly, you can modify the code as follows: ...
How to solve for the derivative using ode solver
Hello @Noya Linder, To obtain an array of dRdt and its corresponding t values correctly, you can modify the code as follows: ...
1 year 前 | 0
| 已接受
已回答
How do you access table data to be used with basic operators?
You can use the table2array function to convert the data table to a numeric array and then access the values using parentheses ...
How do you access table data to be used with basic operators?
You can use the table2array function to convert the data table to a numeric array and then access the values using parentheses ...
1 year 前 | 0
已回答
generation of 2D array of circular ring
Here are the steps how you can write a function which takes D, d, x, y, width and height as its input and gives a 2D array as ou...
generation of 2D array of circular ring
Here are the steps how you can write a function which takes D, d, x, y, width and height as its input and gives a 2D array as ou...
1 year 前 | 0
已回答
Simulation 3D Scene Configuration Background all black.
As shown in the ''scene.jpg'' image, the sample time is the default value. Kindly change it to 1/60 as instructed in the video. ...
Simulation 3D Scene Configuration Background all black.
As shown in the ''scene.jpg'' image, the sample time is the default value. Kindly change it to 1/60 as instructed in the video. ...
1 year 前 | 0
| 已接受
已回答
My trained network only shows 4 layers, Why can't I see the whole architecture?
It seems that you are fine-tuning the Inception V3 network by replacing the last few layers with your own layers for classificat...
My trained network only shows 4 layers, Why can't I see the whole architecture?
It seems that you are fine-tuning the Inception V3 network by replacing the last few layers with your own layers for classificat...
1 year 前 | 0
已回答
integral() doesn't accept scalar function as input
The error you encountered occurs because the function fun you defined is not compatible with the integral function in MATLAB. Th...
integral() doesn't accept scalar function as input
The error you encountered occurs because the function fun you defined is not compatible with the integral function in MATLAB. Th...
1 year 前 | 0
已解决
Sums with Excluded Digits
Add all the integers from 1 to n in which the digit m does not appear. m will always be a single digit integer from 0 to 9. no...
1 year 前
已解决
Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = 2...
1 year 前
已解决
Extract leading non-zero digit
<http://en.wikipedia.org/wiki/Benford%27s_law Benford's Law> states that the distribution of leading digits is not random. This...
1 year 前
已解决
Which doors are open?
There are n doors in an alley. Initially they are all shut. You have been tasked to go down the alley n times, and open/shut the...
1 year 前
已解决
Make a Palindrome Number
Some numbers like 323 are palindromes. Other numbers like 124 are not. But look what happens when we add that number to a revers...
1 year 前
已解决
Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...
1 year 前
已回答
Extract max value and corresponding index from a cell into seperate matrixes in a for loop
What I understood from you question is that you want to store the max stress and index. These values can be appended to the str...
Extract max value and corresponding index from a cell into seperate matrixes in a for loop
What I understood from you question is that you want to store the max stress and index. These values can be appended to the str...
1 year 前 | 1
| 已接受
已解决
Subset Sum
Given a vector v of integers and an integer n, return the the indices of v (as a row vector in ascending order) that sum to n. I...
1 year 前
已解决
Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...
1 year 前
已解决
Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...
1 year 前
已解决
Find relatively common elements in matrix rows
You want to find all elements that exist in greater than 50% of the rows in the matrix. For example, given A = 1 2 3 5 ...
1 year 前
已解决
Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...
1 year 前
已解决
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...
1 year 前
已解决
Remove all the words that end with "ain"
Given the string s1, return the string s2 with the target characters removed. For example, given s1 = 'the main event' your ...
1 year 前
已解决
Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...
1 year 前
已解决
Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...
1 year 前
已解决
Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...
1 year 前
已解决
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...
1 year 前
已回答
How to copy a video file from an external drive to the current workspace?
What I think is the issue you're experiencing is due to passing the variable "name" as a literal string instead of its value. To...
How to copy a video file from an external drive to the current workspace?
What I think is the issue you're experiencing is due to passing the variable "name" as a literal string instead of its value. To...
1 year 前 | 0
| 已接受
已回答
saving a data as .m with double elements
You can use save() function to save the dataset into your workspace. Here are the steps to do it: 1) Create a new structure to...
saving a data as .m with double elements
You can use save() function to save the dataset into your workspace. Here are the steps to do it: 1) Create a new structure to...
1 year 前 | 0
已解决
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...
1 year 前
已解决
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...
1 year 前
已解决
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...
1 year 前
已解决
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 + ...
1 year 前