1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
|
.. _sec-syntax_differences:
Difference in usage from different languages
============================================
.. include:: defs.rst
General usage
-------------
Example:
.. list-table:: General usage
:header-rows: 1
* - Task
- Python
- C++
- MATLAB/Octave
* - Starting |casadi|
- .. code-block:: python
from casadi import *
- .. code-block:: cpp
#include <casadi/casadi.hpp>
using namespace casadi;
- .. code-block:: octave
import casadi.*
* - Printing object
- .. code-block:: python
print(A)
- .. code-block:: cpp
std::cout << A;
- .. code-block:: octave
disp(A)
* - Printing with type information
- ``A <ENTER>`` (interactive), ``print(repr(A))``
- .. code-block:: cpp
std::cout << repr(A);
- ``A <ENTER>`` (interactive), ``disp(repr(A))``
* - Get (extended) representation, ``more=false`` by default
- ``A.str(more)``
- ``str(A, more)``
- ``str(A, more)``
* - Calling a class function
- .. code-block:: python
SX.zeros(3,4)
- .. code-block:: cpp
SX::zeros(3,4)
- .. code-block:: octave
SX.zeros(3,4)
* - Creating a dictionary (e.g. for options)
- .. code-block:: python
d = dict(opt1=opt1)
#or
d = {'opt1':opt1}
#or
d = {}; a['opt1'] = opt1
- .. code-block:: cpp
Dict a;
a["opt1"] = opt1;
- .. code-block:: octave
a = struct;
a.opt1 = opt1;
#or
a = struct('opt1',opt1);
* - Creating a symbol
- .. code-block:: python
MX.sym("x",2,2)
- .. code-block:: cpp
MX::sym("x",2,2)
- .. code-block:: octave
MX.sym('x',2,2)
* - Creating a function
- .. code-block:: python
Function("f",[x,y],[x+y])
- .. code-block:: cpp
Function("f",{x,y},{x+y})
- .. code-block:: octave
Function('f',{x,y},{x+y})
* - Calling a function (form 1)
- .. code-block:: python
z=f(x,y)
- .. code-block:: cpp
z = f({x,y})
- .. code-block:: octave
z=f(x,y)
* - Calling a function (form 2)
- .. code-block:: python
res = f(x=x,y=y)
res["z"]
- .. code-block:: cpp
auto res =\
f({{"x",x},{"y",y}});
res["z"]
- .. code-block:: octave
res=f('x',x,'y',y)
res.z
* - Create an NLP solver
- .. code-block:: python
nlp = {"x":x,"f":f}
nlpsol("S","ipopt",nlp)
- .. code-block:: cpp
MXDict nlp =\
{{"x",x},{"f",f}};
nlpsol("S","ipopt",nlp);
- .. code-block:: octave
nlp=struct('x',x,'f',f);
nlpsol('S','ipopt',nlp);
List of operations
------------------
The following is a list of the most important operations. Operations that differ between the different
languages are marked with a star (*). This list is neither complete, nor does it show all the variants of
each operation. Further information is available in the API documentation.
.. list-table:: General usage
:header-rows: 1
* - Task
- Python
- C++
- MATLAB/Octave
* - Addition, subtraction
- .. code-block:: python
x+y, x-y, -x
- .. code-block:: cpp
x+y, x-y, -x
- .. code-block:: octave
x+y, x-y, -x
* - Elementwise multiplication, division
- .. code-block:: python
x*y, x/y
- .. code-block:: cpp
x*y, x/y
- .. code-block:: octave
x.*y, x./y
* - Matrix multiplication
- .. code-block:: python3
x @ y
# or before Py3.4:
mtimes(x,y)
- .. code-block:: cpp
mtimes(x,y)
- .. code-block:: octave
x*y
* - Linear system solve
- .. code-block:: python3
solve(A,b)
- .. code-block:: cpp
solve(A,b)
- .. code-block:: octave
A\b
* - Natural exponential function and logarithm
- .. code-block:: python
exp(x), log(x)
- .. code-block:: cpp
exp(x), log(x)
- .. code-block:: octave
exp(x), log(x)
* - Exponentiation
- .. code-block:: python
x**y
- .. code-block:: cpp
pow(x,y)
- .. code-block:: octave
x^y, x.^y
* - Square root
- .. code-block:: python
sqrt(x)
- .. code-block:: cpp
sqrt(x)
- .. code-block:: octave
sqrt(x)
* - Trigonometric functions
- .. code-block:: python
sin(x), cos(x), tan(x)
- .. code-block:: cpp
sin(x), cos(x), tan(x)
- .. code-block:: octave
sin(x), cos(x), tan(x)
* - Inverse trigonometric
- .. code-block:: python
asin(x), acos(x)
- .. code-block:: cpp
asin(x), acos(x)
- .. code-block:: octave
asin(x), acos(x)
* - Two argument arctangent
- .. code-block:: python
atan2(y, x)
- .. code-block:: cpp
atan2(y, x)
- .. code-block:: octave
atan2(y, x)
* - Hyperbolic functions
- .. code-block:: python
sinh(x), cosh(x), tanh(x)
- .. code-block:: cpp
sinh(x), cosh(x), tanh(x)
- .. code-block:: octave
sinh(x), cosh(x), tanh(x)
* - Inverse hyperbolic
- .. code-block:: python
asinh(x), acosh(x)
- .. code-block:: cpp
asinh(x), acosh(x)
- .. code-block:: octave
asinh(x), acosh(x)
* - Inequalities
- .. code-block:: python
a<b, a<=b, a>b, a>=b
- .. code-block:: cpp
a<b, a<=b, a>b, a>=b
- .. code-block:: octave
a<b, a<=b, a>b, a>=b
* - (*Not*) equal to
- .. code-block:: python
a==b, a!=b
- .. code-block:: cpp
a==b, a!=b
- .. code-block:: octave
a==b, a~=b
* - Logical and
- .. code-block:: python
logic_and(a, b)
- .. code-block:: cpp
a && b
- .. code-block:: octave
a & b
* - Logical or
- .. code-block:: python
logic_or(a, b)
- .. code-block:: cpp
a || b
- .. code-block:: octave
a | b
* - Logical not
- .. code-block:: python
logic_not(a)
- .. code-block:: cpp
!a
- .. code-block:: octave
~a
* - Round to integer
- .. code-block:: python
floor(x), ceil(x)
- .. code-block:: cpp
floor(x), ceil(x)
- .. code-block:: octave
floor(x), ceil(x)
* - Modulus after division
- .. code-block:: python
fmod(x, y), remainder(x,y)
- .. code-block:: cpp
fmod(x, y), remainder(x,y)
- .. code-block:: octave
rem(x, y), remainder(x,y)
* - Absolute value
- .. code-block:: python
fabs(x)
- .. code-block:: cpp
fabs(x)
- .. code-block:: octave
abs(x)
* - Norm
- .. code-block:: python
norm_1(x)
- .. code-block:: cpp
norm_1(x)
- .. code-block:: octave
norm(x,1)
* - Sign function
- .. code-block:: python
sign(x)
- .. code-block:: cpp
sign(x)
- .. code-block:: octave
sign(x)
* - (Inverse) error function
- .. code-block:: python
erf(x), erfinv(x)
- .. code-block:: cpp
erf(x), erfinv(x)
- .. code-block:: octave
erf(x), erfinv(x)
* - Elementwise min and max
- .. code-block:: python
fmin(x, y), fmax(x, y)
- .. code-block:: cpp
fmin(x, y), fmax(x, y)
- .. code-block:: octave
min(x, y), max(x, y)
* - Global min and max
- .. code-block:: python
mmin(x), mmax(x)
- .. code-block:: cpp
mmin(x), mmax(x)
- .. code-block:: octave
mmin(x), mmax(x)
* - Index of first nonzero
- .. code-block:: python
find(x)
- .. code-block:: cpp
find(x)
- .. code-block:: octave
find(x)
* - If-then-else
- .. code-block:: python
if_else(c, x, y)
- .. code-block:: cpp
if_else(c, x, y)
- .. code-block:: octave
if_else(c, x, y)
* - Transpose
- .. code-block:: python
A.T
- .. code-block:: cpp
A.T()
- .. code-block:: octave
A',A.'
* - Inner product
- .. code-block:: python
dot(x, y)
- .. code-block:: cpp
dot(x, y)
- .. code-block:: octave
dot(x, y)
* - Horizontal/vertical concatenation
- .. code-block:: python
horzcat(x, y)
vertcat(x, y)
hcat([x, y])
vcat([x, y])
- .. code-block:: cpp
horzcat(x, y)
vertcat(x, y)
MX::horzcat({x,y})
MX::vertcat({x,y})
- .. code-block:: octave
[x,y]
[x; y]
c = {x,y};
[c{:}]
vertcat(c{:})
* - Horizontal/vertical split (inverse of concatenation)
- .. code-block:: python
vertsplit(x)
horzsplit(x)
- .. code-block:: cpp
vertsplit(x)
horzsplit(x)
- .. code-block:: octave
vertsplit(x)
horzsplit(x)
* - Element access
- .. code-block:: python
# 0-based
A[i,j]
A[i]
- .. code-block:: cpp
// 0-based
A(i,j)
A(i)
- .. code-block:: octave
% 1-based
A(i,j)
A(i)
* - Element assignment
- .. code-block:: python
# 0-based
A[i,j] = b
A[i] = b
- .. code-block:: cpp
// 0-based
A(i,j) = b
A(i) = b
- .. code-block:: octave
% 1-based
A(i,j) = b
A(i) = b
* - Nonzero access
- .. code-block:: python
# 0-based
A.nz[k]
- .. code-block:: cpp
// 0-based
A.nz(k)
- .. code-block:: octave
(currently unsupported)
* - Nonzero assignment
- .. code-block:: python
# 0-based
A.nz[k] = b
- .. code-block:: cpp
// 0-based
A.nz(k) = b
- .. code-block:: octave
(currently unsupported)
* - Project to a different sparsity
- .. code-block:: python
project(x, s)
- .. code-block:: cpp
project(x, s)
- .. code-block:: octave
project(x, s)
|