Community Profile

photo

A C


Last seen: 5 months ago Active since 2018

Help

Statistics

All
  • MATLAB Central Treasure Hunt Finisher
  • First Answer
  • Revival Level 1
  • Scholar
  • Matrix Patterns I Master
  • First Review
  • Speed Demon
  • Thankful Level 3
  • Creator
  • Introduction to MATLAB Master
  • Community Group Solver
  • ASEE Challenge Master

View badges

Content Feed

View by

Question


Add Letters in a sequence
I want to add Letters in a sequence a b c d e f g h i j k l m n o p q r s t u v w x y z a b c - - - ghi - - - - n o p q - - - ...

1 year ago | 1 answer | 0

1

answer

Question


molviewer is blank. How can I get the Molecule Viewer to display the image?
I am using MATLAB on the web. https://matlab.mathworks.com/. The figure shows up on the right which is a picture that you cannot...

2 years ago | 1 answer | 0

1

answer

Question


Can matlab work with rosetta?
Can matlab work with rosetta? I am trying to download pyrosetta which is coding with python. Is there matlab app that is equival...

2 years ago | 1 answer | 0

1

answer

Question


I want to a recover .mlx file.
My test1.mlx file was blank when I open it today. I want to see if I can recover it for future incidents. I was seeing if I de...

2 years ago | 1 answer | 0

1

answer

Question


Why should I continue using matlab when python is free?
Why should I continue using matlab when python is free? What are matlab benifits over python?

3 years ago | 0 answers | 0

0

answers

Answered
creating a mapping matrix
% given X = [1.5;0] b = [1.75; 0.4] % A*X = b A = b/X

3 years ago | 0

Question


solving for simple Integration symbol
When integrate for rho in this equation b/(1-b*rho), I get -log(b*rho-1) which is wrong. It should come out to be -log(1-b*rho)...

4 years ago | 1 answer | 0

1

answer

Question


Can I determine the points (x,y) with a single line looping back and cross its self?
I have a plot(x,y) where the data loop back and crosses at a certain point (x,y). Can Matlab tell me where it intersect?

4 years ago | 1 answer | 0

1

answer

Question


Is there a way to come up with all the combination between 0 and 1 that sum up to equal 1?
Is there a way to come up with all the combination between 0 and 1 that sum up to equal 1? All combination between 0 and 1. y4...

4 years ago | 1 answer | 0

1

answer

Question


Can I upload an image to a problem that I create in cody?
When click image it makes this <<http://mathworks.com/matlabcentral/images/surf.gif>>.

4 years ago | 1 answer | 0

1

answer

Question


How can I make this work? input x = 10^13
Given a number x, determine how many factors numbers n are less than or equal to that number. The code does takes a long time to...

5 years ago | 1 answer | 0

1

answer

Question


How would I make my for loop more accurate.
a = 0; b = 1; c = 0; d = 1; for k = 1:700 c = a + b; a = b; b = c; d = [d c]; end format long d(7...

5 years ago | 1 answer | 0

1

answer

Question


How can I break the two different ranges in the vector apart?
How can I break the two different ranges in the vector apart? a = [7:17:302 primes(300)]; b = [7:17:302; primes(300)...

5 years ago | 1 answer | 0

1

answer

Question


How can I generate a vector in a for loop with different sizes? In for iii, I used str2double(strrep(num2str(e), ' ','')) to store it. It worked. How can I get f to generate a stored vector if f = e ?
% Problem 40. Reverse Run-Length Encoder % x = 2, 5, 1, 2, 4, 1, 1, 3 % can be read as % Two 5's, one 2, four 1's, on...

5 years ago | 1 answer | 0

1

answer

Question


How can I add on to y in a for loop? Insert zeros into vector. cody question
The code returns 5 0 0. I used the debugger. The for loop made 1 0 0; 2 0 0;....; 5 0 0 The goal is to return y = [1 0 0 2...

5 years ago | 1 answer | 0

1

answer