Statistics
RANK
119,405
of 295,467
REPUTATION
0
CONTRIBUTIONS
14 Questions
1 Answer
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
0
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
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 - - - ...
2 years ago | 1 answer | 0
1
answerQuestion
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
answerQuestion
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
answerQuestion
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...
3 years ago | 1 answer | 0
1
answerQuestion
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
answerscreating a mapping matrix
% given X = [1.5;0] b = [1.75; 0.4] % A*X = b A = b/X
4 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
answerQuestion
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
answerQuestion
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...
5 years ago | 1 answer | 0
1
answerQuestion
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>>.
5 years ago | 1 answer | 0
1
answerQuestion
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
answerQuestion
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...
6 years ago | 1 answer | 0
1
answerQuestion
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)...
6 years ago | 1 answer | 0
1
answerQuestion
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...
6 years ago | 1 answer | 0
1
answerQuestion
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...
6 years ago | 1 answer | 0