Answered
does anybody please explain how to use 'tomlab' in Simbiology?
Hi Emran, TOMLAB and SimBiology are two separate products and are not integrated. Furthermore, TOMLAB is used for *optimizing...

13 years ago | 0

Answered
Systems Biology Toolbox vs. SimBiology
I haven't really used the Systems Biology Toolbox, but I am a developer on the SimBiology team so I can add a few more details a...

13 years ago | 0

| accepted

Answered
How to call a SimBiology function from Java
I'm one of the developers on the SimBiology team. The error you are seeing is typical of what happens when a function isn't avai...

13 years ago | 0

| accepted

Answered
Simbiology problem
Hi Asterio, Regarding your second problem with the "group" tab: The short answer is that you should leave "group" empty, b...

14 years ago | 0

Answered
Simbiology problem
Hi Asterio, I'm one of the developers on the SimBiology team. I think you may have encountered a bug that happens when a para...

14 years ago | 0

| accepted

Solved


Function composition - harder
Write a function that accepts an arbitrary number of function handles f_1, f_2, ..., f_n and returns the composition h. That is,...

14 years ago

Answered
how to perform clinical trial task in Simbiology
Hi Rui, This is a custom task written by the instructor to demonstrate how SimBiology allows you to write custom tasks using ...

14 years ago | 0

Answered
Simulation data for :SimBiology model for PK/PD of anticancer drugs
I suggest contacting the authors of the article. If you don't hear back from them, you can always manually extract the data from...

14 years ago | 0

Answered
problem with optimset not being recognized, R2012a
I would first ensure that optimset.m got installed. Based on the location of your R2012a installation, look for the file at |C:\...

14 years ago | 6

Answered
incorporating surface receptor binding into enzyme kinetics model
When you say that the substrate is in equilibrium with the receptors, I infer that the receptor-ligand interactions are happenin...

14 years ago | 0

Solved


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

14 years ago

Solved


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

14 years ago

Solved


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

14 years ago

Solved


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

14 years ago

Solved


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

14 years ago

Solved


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

14 years ago

Solved


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

14 years ago

Solved


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

14 years ago

Solved


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

14 years ago

Solved


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

14 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

14 years ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

14 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

14 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

14 years ago

Problem


Filter values in a vector
Cody often benefits from a functional style of programming. For example, your score is often better when you compose multiple fu...

14 years ago | 0 | 73 solvers

Solved


Filter values in a vector
Cody often benefits from a functional style of programming. For example, your score is often better when you compose multiple fu...

14 years ago

Problem


Create a dictionary
The goal is to write a function that returns a dictionary from a list of words or phrases and their definitions. Here is an exam...

14 years ago | 4 | 80 solvers

Solved


Create a dictionary
The goal is to write a function that returns a dictionary from a list of words or phrases and their definitions. Here is an exam...

14 years ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

14 years ago

Answered
Variable Stoichiometric Coefficients in SimBiology?
Hi Sebastian, Pramod's suggestion to modify the reaction via the Stoichiometry property is only helpful if you are willing to w...

14 years ago | 0

Load more