Community Profile

photo

Srishti Saha


Whitefield

Last seen: alrededor de 3 años hace Con actividad desde 2018

A data scientist by profession, electronic engineer by education and a coder by the hobby

Estadísticas

All
  • Thankful Level 2
  • 3 Month Streak
  • Project Euler I
  • Famous
  • Quiz Master
  • Strings II Master
  • Draw Letters
  • Scholar
  • ASEE Challenge Master
  • Thankful Level 1
  • Strings I Master
  • Puzzler

Ver insignias

Content Feed

Ver por

Respondida
Number of first days of the month equals to Mondays
I have written the following function and it has worked perfectly for me: %problem day counterfunction n = day_counter(year...

casi 6 años hace | 1

Respondida
How can I correct this error?
This works perfectly: %problem huge add function summa = huge_add(a,b) if ~ischar(a) || ~ischar(b) || sum(isstrprop(a...

casi 6 años hace | 1

Respondida
Write a function called smallest_multiple
Here is a solution that worked for me: %%alternative solution to smallest multiple function r = smallest_multiple(k) ...

casi 6 años hace | 1

Respondida
Cant seem to find the error in the question, please help
This function worked perfectly for me: function mbd = spherical_mirror_aberr( fn,D ) f=fn*D; delta_x = 0.01; x...

casi 6 años hace | 0

Pregunta


How do I vectorize each digit of an integer and store it as an array?
I have to convert an integer into a vector of all its digits. Example: 100---> [1 0 0] function ans = int2vec(x) t=regexp...

casi 6 años hace | 2 respuestas | 0

2

respuestas

Pregunta


How can I take variable number of input strings in a function and return the concatenated output string?
I have to write a function that takes variable number of inputs (even no input is allowed) and returns a concatenate string as t...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Respondida
Can anyone find the error in my code?
Hey, this piece of code works just fine: %function to compute euler's number function [approx_e, k] = approximate_e (delt...

casi 6 años hace | 0

Respondida
how do I remove special characters from my cell array strings?
This worked for me s_nos=regexprep(s_split,'[^0-9]','');

casi 6 años hace | 0

| aceptada

Respondida
Write a function called halfsum that takes as input an at most two-dimensional matrix A and computes the sum of the elements of A that are in the diagonal or are to the right of it. example, the input is [1 2 3; 4 5 6; 7 8 9],the ans is 26
This code works perfectly for me: %function to compute sum of lower most right side triangle in an X*2 matrix function u =...

casi 6 años hace | 0

Respondida
How to do it?
This code works perfectly for me: %function to compute sum of lower most right side triangle in an X*2 matrix function u =...

casi 6 años hace | 0

Pregunta


how do I remove special characters from my cell array strings?
I have a cell array of the sorts: {'508-647-7000'} {' (508) 647-7001'} {' 617-555-1212'} I need the special charac...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Respondida
Compute the product of the next n elements in matrix
This should work. has been tested and refined: function B = maxproduct(A,n) % After checking that we do not have to retu...

alrededor de 6 años hace | 1

Respondida
How can I solve this problem?
This should work perfectly: function mul = smallest_multiple(n) facts = zeros(1,n); % store the exponents ...

alrededor de 6 años hace | 2

Respondida
Write a function called digit_counter that takes the name of a text file as input and returns the number of digits (i.e., any of the characters, 0-to-9) that the file contains. If there is a problem opening the file, the function returns -1.
This should definitely work: %function: digit_counter in a file; takes file name as argument function dc = digit_counter(f...

alrededor de 6 años hace | 0

Respondida
Hey Guys can you help me with that.
I think this is the most elegant solution that takes care of all exceptions. Apologies if it has been covered in the past: ...

alrededor de 6 años hace | 1