photo

Jayant


Last seen: environ un an il y a Actif depuis 2023

Followers: 0   Following: 0

Statistiques

All
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
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: ...

environ un an il y a | 0

| A accepté

Réponse apportée
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 ...

environ un an il y a | 0

Réponse apportée
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...

environ un an il y a | 0

Réponse apportée
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. ...

environ un an il y a | 0

| A accepté

Réponse apportée
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...

environ un an il y a | 0

Réponse apportée
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...

environ un an il y a | 0

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

Réponse apportée
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...

environ un an il y a | 1

| A accepté

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

Réponse apportée
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...

environ un an il y a | 0

| A accepté

Réponse apportée
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...

environ un an il y a | 0

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

A résolu


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

environ un an il y a

Charger plus