photo

Jayant


Last seen: 12 meses hace Con actividad desde 2023

Followers: 0   Following: 0

Estadística

All
  • Knowledgeable Level 2
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

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

alrededor de 1 año hace | 0

| aceptada

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

alrededor de 1 año hace | 0

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

alrededor de 1 año hace | 0

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

alrededor de 1 año hace | 0

| aceptada

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

alrededor de 1 año hace | 0

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

alrededor de 1 año hace | 0

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...

alrededor de 1 año hace

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

alrededor de 1 año hace | 1

| aceptada

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

alrededor de 1 año hace

Resuelto


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

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

alrededor de 1 año hace | 0

| aceptada

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

alrededor de 1 año hace | 0

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Resuelto


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

alrededor de 1 año hace

Cargar más